tag | line | file | source code |
value | 107 | drivers/char/keyboard.c | typedef void (*k_hand)(unsigned char value, char up_flag); |
value | 108 | drivers/char/keyboard.c | typedef void (k_handfn)(unsigned char value, char up_flag); |
value | 528 | drivers/char/keyboard.c | static void do_spec(unsigned char value, char up_flag) |
value | 540 | drivers/char/keyboard.c | if (value >= SIZE(fn_table)) |
value | 542 | drivers/char/keyboard.c | if (!fn_table[value]) |
value | 544 | drivers/char/keyboard.c | fn_table[value](); |
value | 547 | drivers/char/keyboard.c | static void do_lowercase(unsigned char value, char up_flag) |
value | 552 | drivers/char/keyboard.c | static void do_self(unsigned char value, char up_flag) |
value | 558 | drivers/char/keyboard.c | value = handle_diacr(value); |
value | 562 | drivers/char/keyboard.c | diacr = value; |
value | 566 | drivers/char/keyboard.c | put_queue(value); |
value | 580 | drivers/char/keyboard.c | static void do_dead(unsigned char value, char up_flag) |
value | 585 | drivers/char/keyboard.c | value = ret_diacr[value]; |
value | 586 | drivers/char/keyboard.c | if (diacr == value) { /* pressed twice */ |
value | 588 | drivers/char/keyboard.c | put_queue(value); |
value | 591 | drivers/char/keyboard.c | diacr = value; |
value | 616 | drivers/char/keyboard.c | static void do_cons(unsigned char value, char up_flag) |
value | 620 | drivers/char/keyboard.c | want_console = value; |
value | 623 | drivers/char/keyboard.c | static void do_fn(unsigned char value, char up_flag) |
value | 627 | drivers/char/keyboard.c | if (value < SIZE(func_table)) |
value | 628 | drivers/char/keyboard.c | puts_queue(func_table[value]); |
value | 630 | drivers/char/keyboard.c | printk("do_fn called with value=%d\n", value); |
value | 633 | drivers/char/keyboard.c | static void do_pad(unsigned char value, char up_flag) |
value | 643 | drivers/char/keyboard.c | applkey(app_map[value], 1); |
value | 648 | drivers/char/keyboard.c | switch (value) { |
value | 685 | drivers/char/keyboard.c | put_queue(pad_chars[value]); |
value | 686 | drivers/char/keyboard.c | if (value == KVAL(K_PENTER) && vc_kbd_mode(kbd, VC_CRLF)) |
value | 690 | drivers/char/keyboard.c | static void do_cur(unsigned char value, char up_flag) |
value | 696 | drivers/char/keyboard.c | applkey(cur_chars[value], vc_kbd_mode(kbd,VC_CKMODE)); |
value | 699 | drivers/char/keyboard.c | static void do_shift(unsigned char value, char up_flag) |
value | 707 | drivers/char/keyboard.c | if (value == KVAL(K_CAPSSHIFT)) { |
value | 708 | drivers/char/keyboard.c | value = KVAL(K_SHIFT); |
value | 716 | drivers/char/keyboard.c | if (k_down[value]) |
value | 717 | drivers/char/keyboard.c | k_down[value]--; |
value | 719 | drivers/char/keyboard.c | k_down[value]++; |
value | 721 | drivers/char/keyboard.c | if (k_down[value]) |
value | 722 | drivers/char/keyboard.c | shift_state |= (1 << value); |
value | 724 | drivers/char/keyboard.c | shift_state &= ~ (1 << value); |
value | 758 | drivers/char/keyboard.c | static void do_meta(unsigned char value, char up_flag) |
value | 765 | drivers/char/keyboard.c | put_queue(value); |
value | 767 | drivers/char/keyboard.c | put_queue(value | 0x80); |
value | 770 | drivers/char/keyboard.c | static void do_ascii(unsigned char value, char up_flag) |
value | 776 | drivers/char/keyboard.c | npadch = value; |
value | 778 | drivers/char/keyboard.c | npadch = (npadch * 10 + value) % 1000; |
value | 781 | drivers/char/keyboard.c | static void do_lock(unsigned char value, char up_flag) |
value | 785 | drivers/char/keyboard.c | chg_vc_kbd_lock(kbd, value); |
value | 256 | drivers/char/serial.c | static inline void serial_out(struct async_struct *info, int offset, int value) |
value | 261 | drivers/char/serial.c | outb(value, info->port+1); |
value | 264 | drivers/char/serial.c | outb(value, info->port+offset); |
value | 268 | drivers/char/serial.c | int value) |
value | 273 | drivers/char/serial.c | outb_p(value, info->port+1); |
value | 277 | drivers/char/serial.c | outb(value, info->port+offset); |
value | 279 | drivers/char/serial.c | outb_p(value, info->port+offset); |
value | 1480 | drivers/char/serial.c | static int get_modem_info(struct async_struct * info, unsigned int *value) |
value | 1495 | drivers/char/serial.c | put_fs_long(result,(unsigned long *) value); |
value | 1500 | drivers/char/serial.c | unsigned int *value) |
value | 1502 | drivers/char/serial.c | unsigned int arg = get_fs_long((unsigned long *) value); |
value | 158 | drivers/net/atp.h | write_reg(short port, unsigned char reg, unsigned char value) |
value | 167 | drivers/net/atp.h | outval |= value; |
value | 177 | drivers/net/atp.h | write_reg_high(short port, unsigned char reg, unsigned char value) |
value | 186 | drivers/net/atp.h | outval = WrAddr | HNib | value; |
value | 197 | drivers/net/atp.h | write_reg_byte(short port, unsigned char reg, unsigned char value) |
value | 205 | drivers/net/atp.h | outb((outval & 0xf0) | (value & 0x0f), port + PAR_DATA); |
value | 206 | drivers/net/atp.h | outb(value & 0x0f, port + PAR_DATA); |
value | 207 | drivers/net/atp.h | value >>= 4; |
value | 208 | drivers/net/atp.h | outb(value, port + PAR_DATA); |
value | 209 | drivers/net/atp.h | outb(0x10 | value, port + PAR_DATA); |
value | 210 | drivers/net/atp.h | outb(0x10 | value, port + PAR_DATA); |
value | 212 | drivers/net/atp.h | outb(EOC | value, port + PAR_DATA); /* Reset the address register. */ |
value | 222 | drivers/net/atp.h | extern inline void write_byte_mode0(short ioaddr, unsigned char value) |
value | 224 | drivers/net/atp.h | outb(value & 0x0f, ioaddr + PAR_DATA); |
value | 225 | drivers/net/atp.h | outb((value>>4) | 0x10, ioaddr + PAR_DATA); |
value | 228 | drivers/net/atp.h | extern inline void write_byte_mode1(short ioaddr, unsigned char value) |
value | 230 | drivers/net/atp.h | outb(value & 0x0f, ioaddr + PAR_DATA); |
value | 232 | drivers/net/atp.h | outb((value>>4) | 0x10, ioaddr + PAR_DATA); |
value | 237 | drivers/net/atp.h | extern inline void write_word_mode0(short ioaddr, unsigned short value) |
value | 239 | drivers/net/atp.h | outb(value & 0x0f, ioaddr + PAR_DATA); |
value | 240 | drivers/net/atp.h | value >>= 4; |
value | 241 | drivers/net/atp.h | outb((value & 0x0f) | 0x10, ioaddr + PAR_DATA); |
value | 242 | drivers/net/atp.h | value >>= 4; |
value | 243 | drivers/net/atp.h | outb(value & 0x0f, ioaddr + PAR_DATA); |
value | 244 | drivers/net/atp.h | value >>= 4; |
value | 245 | drivers/net/atp.h | outb((value & 0x0f) | 0x10, ioaddr + PAR_DATA); |
value | 228 | drivers/net/de620.c | byte value; |
value | 231 | drivers/net/de620.c | while ((((value = inb(STATUS_PORT)) & READY) == 0) && (cnt <= 1000)) |
value | 237 | drivers/net/de620.c | return value & 0xf0; /* nibble */ |
value | 255 | drivers/net/de620.c | de620_put_byte(byte value) |
value | 259 | drivers/net/de620.c | outb(value, DATA_PORT); |
value | 266 | drivers/net/de620.c | byte value; |
value | 269 | drivers/net/de620.c | value = de620_ready(); /* High nibble */ |
value | 271 | drivers/net/de620.c | value |= de620_ready() >> 4; /* Low nibble */ |
value | 272 | drivers/net/de620.c | return value; |
value | 315 | drivers/net/de620.c | byte value; |
value | 338 | drivers/net/de620.c | value = inb(STATUS_PORT) & 0xf0; /* High nibble */ |
value | 340 | drivers/net/de620.c | *data++ = value | inb(STATUS_PORT) >> 4; /* Low nibble */ |
value | 371 | drivers/net/de620.c | de620_set_register(byte reg, byte value) |
value | 377 | drivers/net/de620.c | de620_put_byte(value); |
value | 383 | drivers/net/de620.c | byte value; |
value | 386 | drivers/net/de620.c | value = de620_read_byte(); |
value | 389 | drivers/net/de620.c | return value; |
value | 1440 | drivers/net/depca.c | static char asc2hex(char value); |
value | 1504 | drivers/net/depca.c | static char asc2hex(char value) |
value | 1506 | drivers/net/depca.c | value -= 0x30; /* normalise to 0..9 range */ |
value | 1507 | drivers/net/depca.c | if (value >= 0) { |
value | 1508 | drivers/net/depca.c | if (value > 9) { /* but may not be 10..15 */ |
value | 1509 | drivers/net/depca.c | value &= 0x1f; /* make A..F & a..f be the same */ |
value | 1510 | drivers/net/depca.c | value -= 0x07; /* normalise to 10..15 range */ |
value | 1511 | drivers/net/depca.c | if ((value < 0x0a) || (value > 0x0f)) { /* if outside range then... */ |
value | 1512 | drivers/net/depca.c | value = -1; /* ...signal error */ |
value | 1516 | drivers/net/depca.c | value = -1; /* ...signal error */ |
value | 1518 | drivers/net/depca.c | return value; /* return hex char or error */ |
value | 132 | drivers/net/ne.c | struct {unsigned char value, offset; } program_seq[] = { |
value | 148 | drivers/net/ne.c | outb_p(program_seq[i].value, ioaddr + program_seq[i].offset); |
value | 514 | drivers/net/sk_g16.c | void SK_write_reg(int reg_number, int value); |
value | 1969 | drivers/net/sk_g16.c | void SK_write_reg(int reg_number, int value) |
value | 1973 | drivers/net/sk_g16.c | SK_IOREG = value; |
value | 1279 | drivers/scsi/53c7,8xx.h | #define NCR53c7x0_write8(address,value) \ |
value | 1282 | drivers/scsi/53c7,8xx.h | (value) : \ |
value | 1283 | drivers/scsi/53c7,8xx.h | outb((value), NCR53c7x0_address_io + (address))) |
value | 1285 | drivers/scsi/53c7,8xx.h | #define NCR53c7x0_write16(address,value) \ |
value | 1288 | drivers/scsi/53c7,8xx.h | (value) : \ |
value | 1289 | drivers/scsi/53c7,8xx.h | outw((value), NCR53c7x0_address_io + (address))) |
value | 1291 | drivers/scsi/53c7,8xx.h | #define NCR53c7x0_write32(address,value) \ |
value | 1294 | drivers/scsi/53c7,8xx.h | (value) : \ |
value | 1295 | drivers/scsi/53c7,8xx.h | outl((value), NCR53c7x0_address_io + (address))) |
value | 1297 | drivers/scsi/53c7,8xx.h | #define patch_abs_32(script, offset, symbol, value) \ |
value | 1300 | drivers/scsi/53c7,8xx.h | (script)[A_##symbol##_used[i] - (offset)] += (value); \ |
value | 1308 | drivers/scsi/53c7,8xx.h | #define patch_abs_rwri_data(script, offset, symbol, value) \ |
value | 1314 | drivers/scsi/53c7,8xx.h | (((value) << DBC_RWRI_IMMEDIATE_SHIFT) & \ |
value | 1317 | drivers/scsi/53c7,8xx.h | #define patch_dsa_32(dsa, symbol, word, value) \ |
value | 1320 | drivers/scsi/53c7,8xx.h | + (word)] = (unsigned long) (value); \ |
value | 1324 | drivers/scsi/53c7,8xx.h | (int) (word), (long) (value)); \ |
value | 373 | drivers/scsi/NCR5380.c | unsigned char value; |
value | 399 | drivers/scsi/NCR5380.c | for (i = 0; (phases[i].value != PHASE_UNKNOWN) && |
value | 400 | drivers/scsi/NCR5380.c | (phases[i].value != (status & PHASE_MASK)); ++i); |
value | 75 | drivers/scsi/g_NCR5380.h | #define NCR5380_write(reg, value) (outb((value), (port + (reg)))) |
value | 166 | drivers/scsi/pas16.h | #define NCR5380_write(reg, value) ( outb((value),PAS16_io_port(reg)) ) |
value | 172 | drivers/scsi/pas16.h | #define NCR5380_write(reg, value) \ |
value | 174 | drivers/scsi/pas16.h | instance->hostno, (value), (reg), PAS16_io_port(reg)), \ |
value | 175 | drivers/scsi/pas16.h | outb( (value),PAS16_io_port(reg) ) ) |
value | 1128 | drivers/scsi/st.c | int dev, value; |
value | 1149 | drivers/scsi/st.c | value = (options & ~MT_ST_OPTIONS) * ST_BLOCK_SIZE; |
value | 1150 | drivers/scsi/st.c | if (value < 1 || value > st_buffer_size) { |
value | 1152 | drivers/scsi/st.c | value); |
value | 1155 | drivers/scsi/st.c | STp->write_threshold = value; |
value | 143 | drivers/scsi/t128.h | #define NCR5380_write(reg, value) (*(T128_address(reg)) = (value)) |
value | 149 | drivers/scsi/t128.h | #define NCR5380_write(reg, value) { \ |
value | 151 | drivers/scsi/t128.h | instance->hostno, (value), (reg), T128_address(reg)); \ |
value | 152 | drivers/scsi/t128.h | *(T128_address(reg)) = (value); \ |
value | 159 | drivers/sound/dev_table.h | void (*controller) (int dev, int voice, int ctrl_num, int value); |
value | 160 | drivers/sound/dev_table.h | void (*panning) (int dev, int voice, int value); |
value | 163 | drivers/sound/dev_table.h | void (*bender) (int dev, int chn, int value); |
value | 970 | drivers/sound/gus_wave.c | guswave_panning (int dev, int voice, int value) |
value | 973 | drivers/sound/gus_wave.c | voices[voice].panning = value; |
value | 1114 | drivers/sound/gus_wave.c | guswave_controller (int dev, int voice, int ctrl_num, int value) |
value | 1125 | drivers/sound/gus_wave.c | voices[voice].bender = value; |
value | 1129 | drivers/sound/gus_wave.c | freq = compute_finetune (voices[voice].orig_freq, value, |
value | 1141 | drivers/sound/gus_wave.c | voices[voice].bender_range = value; |
value | 1144 | drivers/sound/gus_wave.c | value /= 128; |
value | 1148 | drivers/sound/gus_wave.c | voices[voice].expression_vol = value; |
value | 1155 | drivers/sound/gus_wave.c | voices[voice].panning = (value * 2) - 128; |
value | 1159 | drivers/sound/gus_wave.c | value = (value * 100) / 16383; |
value | 1162 | drivers/sound/gus_wave.c | voices[voice].main_vol = value; |
value | 2404 | drivers/sound/gus_wave.c | guswave_bender (int dev, int voice, int value) |
value | 2409 | drivers/sound/gus_wave.c | voices[voice].bender = value - 8192; |
value | 2410 | drivers/sound/gus_wave.c | freq = compute_finetune (voices[voice].orig_freq, value, |
value | 413 | drivers/sound/midi_synth.c | midi_synth_controller (int dev, int channel, int ctrl_num, int value) |
value | 436 | drivers/sound/midi_synth.c | midi_outc (orig_dev, value & 0x7f); |
value | 446 | drivers/sound/midi_synth.c | midi_synth_bender (int dev, int channel, int value) |
value | 454 | drivers/sound/midi_synth.c | if (value < 0 || value > 16383) |
value | 467 | drivers/sound/midi_synth.c | else if (!prefix_cmd (orig_dev, value & 0x7f)) |
value | 470 | drivers/sound/midi_synth.c | midi_outc (orig_dev, value & 0x7f); |
value | 471 | drivers/sound/midi_synth.c | midi_outc (orig_dev, (value >> 7) & 0x7f); |
value | 14 | drivers/sound/midi_synth.h | void midi_synth_controller (int dev, int channel, int ctrl_num, int value); |
value | 16 | drivers/sound/midi_synth.h | void midi_synth_bender (int dev, int chn, int value); |
value | 1002 | drivers/sound/opl3.c | bend_pitch (int dev, int voice, int value) |
value | 1013 | drivers/sound/opl3.c | voices[voice].bender = value; |
value | 1014 | drivers/sound/opl3.c | if (!value) |
value | 1044 | drivers/sound/opl3.c | opl3_controller (int dev, int voice, int ctrl_num, int value) |
value | 1052 | drivers/sound/opl3.c | bend_pitch (dev, voice, value); |
value | 1056 | drivers/sound/opl3.c | voices[voice].bender_range = value; |
value | 1068 | drivers/sound/opl3.c | opl3_bender (int dev, int voice, int value) |
value | 1073 | drivers/sound/opl3.c | bend_pitch (dev, voice, value); |
value | 113 | drivers/sound/pas.h | unsigned int value:8; |
value | 104 | drivers/sound/pss.c | pss_outpw (unsigned short port, unsigned short value) |
value | 108 | drivers/sound/pss.c | :"a" (value), "d" (port)); |
value | 56 | drivers/sound/sb_mixer.c | sb_setmixer (unsigned int port, unsigned int value) |
value | 65 | drivers/sound/sb_mixer.c | OUTB ((unsigned char) (value & 0xff), MIXER_DATA); |
value | 185 | drivers/sound/sb_mixer.c | sb_mixer_set (int dev, int value) |
value | 187 | drivers/sound/sb_mixer.c | int left = value & 0x000000ff; |
value | 188 | drivers/sound/sb_mixer.c | int right = (value & 0x0000ff00) >> 8; |
value | 102 | drivers/sound/sound_calls.h | int snd_ioctl_return(int *addr, int value); |
value | 140 | drivers/sound/sound_calls.h | void sb_setmixer (unsigned int port, unsigned int value); |
value | 44 | drivers/sound/soundcard.c | snd_ioctl_return (int *addr, int value) |
value | 46 | drivers/sound/soundcard.c | if (value < 0) |
value | 47 | drivers/sound/soundcard.c | return value; |
value | 49 | drivers/sound/soundcard.c | PUT_WORD_TO_USER (addr, 0, value); |
value | 179 | fs/ext2/super.c | char * value; |
value | 186 | fs/ext2/super.c | if ((value = strchr (this_char, '=')) != NULL) |
value | 187 | fs/ext2/super.c | *value++ = 0; |
value | 191 | fs/ext2/super.c | if (!value || !*value) |
value | 193 | fs/ext2/super.c | else if (!strcmp (value, "none")) { |
value | 197 | fs/ext2/super.c | else if (strcmp (value, "normal")) |
value | 199 | fs/ext2/super.c | else if (strcmp (value, "strict")) { |
value | 205 | fs/ext2/super.c | value); |
value | 212 | fs/ext2/super.c | if (!value || !*value) { |
value | 217 | fs/ext2/super.c | if (!strcmp (value, "continue")) { |
value | 222 | fs/ext2/super.c | else if (!strcmp (value, "remount-ro")) { |
value | 227 | fs/ext2/super.c | else if (!strcmp (value, "panic")) { |
value | 234 | fs/ext2/super.c | value); |
value | 251 | fs/ext2/super.c | if (!value || !*value) { |
value | 256 | fs/ext2/super.c | *sb_block = simple_strtoul (value, &value, 0); |
value | 257 | fs/ext2/super.c | if (*value) { |
value | 259 | fs/ext2/super.c | value); |
value | 64 | fs/isofs/inode.c | char *this_char,*value; |
value | 83 | fs/isofs/inode.c | if ((value = strchr(this_char,'=')) != NULL) |
value | 84 | fs/isofs/inode.c | *value++ = 0; |
value | 85 | fs/isofs/inode.c | if (!strcmp(this_char,"map") && value) { |
value | 86 | fs/isofs/inode.c | if (value[0] && !value[1] && strchr("on",*value)) |
value | 87 | fs/isofs/inode.c | popt->map = *value; |
value | 88 | fs/isofs/inode.c | else if (!strcmp(value,"off")) popt->map = 'o'; |
value | 89 | fs/isofs/inode.c | else if (!strcmp(value,"normal")) popt->map = 'n'; |
value | 92 | fs/isofs/inode.c | else if (!strcmp(this_char,"conv") && value) { |
value | 93 | fs/isofs/inode.c | if (value[0] && !value[1] && strchr("bta",*value)) |
value | 94 | fs/isofs/inode.c | popt->conversion = *value; |
value | 95 | fs/isofs/inode.c | else if (!strcmp(value,"binary")) popt->conversion = 'b'; |
value | 96 | fs/isofs/inode.c | else if (!strcmp(value,"text")) popt->conversion = 't'; |
value | 97 | fs/isofs/inode.c | else if (!strcmp(value,"mtext")) popt->conversion = 'm'; |
value | 98 | fs/isofs/inode.c | else if (!strcmp(value,"auto")) popt->conversion = 'a'; |
value | 101 | fs/isofs/inode.c | else if (value && |
value | 105 | fs/isofs/inode.c | char * vpnt = value; |
value | 72 | fs/msdos/inode.c | char *this_char,*value; |
value | 82 | fs/msdos/inode.c | if ((value = strchr(this_char,'=')) != NULL) |
value | 83 | fs/msdos/inode.c | *value++ = 0; |
value | 84 | fs/msdos/inode.c | if (!strcmp(this_char,"check") && value) { |
value | 85 | fs/msdos/inode.c | if (value[0] && !value[1] && strchr("rns",*value)) |
value | 86 | fs/msdos/inode.c | *check = *value; |
value | 87 | fs/msdos/inode.c | else if (!strcmp(value,"relaxed")) *check = 'r'; |
value | 88 | fs/msdos/inode.c | else if (!strcmp(value,"normal")) *check = 'n'; |
value | 89 | fs/msdos/inode.c | else if (!strcmp(value,"strict")) *check = 's'; |
value | 92 | fs/msdos/inode.c | else if (!strcmp(this_char,"conv") && value) { |
value | 93 | fs/msdos/inode.c | if (value[0] && !value[1] && strchr("bta",*value)) |
value | 94 | fs/msdos/inode.c | *conversion = *value; |
value | 95 | fs/msdos/inode.c | else if (!strcmp(value,"binary")) *conversion = 'b'; |
value | 96 | fs/msdos/inode.c | else if (!strcmp(value,"text")) *conversion = 't'; |
value | 97 | fs/msdos/inode.c | else if (!strcmp(value,"auto")) *conversion = 'a'; |
value | 101 | fs/msdos/inode.c | if (!value || !*value) |
value | 103 | fs/msdos/inode.c | *uid = simple_strtoul(value,&value,0); |
value | 104 | fs/msdos/inode.c | if (*value) |
value | 108 | fs/msdos/inode.c | if (!value || !*value) |
value | 110 | fs/msdos/inode.c | *gid = simple_strtoul(value,&value,0); |
value | 111 | fs/msdos/inode.c | if (*value) |
value | 115 | fs/msdos/inode.c | if (!value || !*value) |
value | 117 | fs/msdos/inode.c | *umask = simple_strtoul(value,&value,8); |
value | 118 | fs/msdos/inode.c | if (*value) |
value | 122 | fs/msdos/inode.c | if (value) return 0; |
value | 126 | fs/msdos/inode.c | if (!value || !*value) |
value | 128 | fs/msdos/inode.c | *fat = simple_strtoul(value,&value,0); |
value | 129 | fs/msdos/inode.c | if (*value || (*fat != 12 && *fat != 16)) |
value | 133 | fs/msdos/inode.c | if (value) return 0; |
value | 45 | include/asm-i386/io.h | extern inline void __out##s(unsigned x value, unsigned short port) { |
value | 51 | include/asm-i386/io.h | __OUT1(s,x) __OUT2(s,s1,"w") : : "a" (value), "d" (port)); } \ |
value | 52 | include/asm-i386/io.h | __OUT1(s##c,x) __OUT2(s,s1,"") : : "a" (value), "i" (port)); } \ |
value | 53 | include/asm-i386/io.h | __OUT1(s##_p,x) __OUT2(s,s1,"w") : : "a" (value), "d" (port)); SLOW_DOWN_IO; } \ |
value | 54 | include/asm-i386/io.h | __OUT1(s##c_p,x) __OUT2(s,s1,"") : : "a" (value), "i" (port)); SLOW_DOWN_IO; } |
value | 32 | include/linux/bios32.h | unsigned char device_fn, unsigned char where, unsigned char *value); |
value | 34 | include/linux/bios32.h | unsigned char device_fn, unsigned char where, unsigned short *value); |
value | 36 | include/linux/bios32.h | unsigned char device_fn, unsigned char where, unsigned long *value); |
value | 39 | include/linux/bios32.h | unsigned char device_fn, unsigned char where, unsigned char value); |
value | 41 | include/linux/bios32.h | unsigned char device_fn, unsigned char where, unsigned short value); |
value | 43 | include/linux/bios32.h | unsigned char device_fn, unsigned char where, unsigned long value); |
value | 22 | include/linux/module.h | unsigned long value; /* value of symbol */ |
value | 144 | include/linux/pci.h | unsigned char device_fn, unsigned char where, unsigned char *value); |
value | 146 | include/linux/pci.h | unsigned char device_fn, unsigned char where, unsigned short *value); |
value | 148 | include/linux/pci.h | unsigned char device_fn, unsigned char where, unsigned long *value); |
value | 151 | include/linux/pci.h | unsigned char device_fn, unsigned char where, unsigned char value); |
value | 153 | include/linux/pci.h | unsigned char device_fn, unsigned char where, unsigned short value); |
value | 155 | include/linux/pci.h | unsigned char device_fn, unsigned char where, unsigned long value); |
value | 886 | include/linux/soundcard.h | #define SEQ_CONTROL(dev, chn, controller, value) \ |
value | 887 | include/linux/soundcard.h | _CHN_COMMON(dev, MIDI_CTL_CHANGE, chn, controller, 0, value) |
value | 889 | include/linux/soundcard.h | #define SEQ_BENDER(dev, chn, value) \ |
value | 890 | include/linux/soundcard.h | _CHN_COMMON(dev, MIDI_PITCH_BEND, chn, 0, 0, value) |
value | 893 | include/linux/soundcard.h | #define SEQ_V2_X_CONTROL(dev, voice, controller, value) {_SEQ_NEEDBUF(8);\ |
value | 899 | include/linux/soundcard.h | *(short *)&_seqbuf[_seqbufptr+5] = (value);\ |
value | 906 | include/linux/soundcard.h | #define SEQ_PITCHBEND(dev, voice, value) SEQ_V2_X_CONTROL(dev, voice, CTRL_PITCH_BENDER, value) |
value | 907 | include/linux/soundcard.h | #define SEQ_BENDER_RANGE(dev, voice, value) SEQ_V2_X_CONTROL(dev, voice, CTRL_PITCH_BENDER_RANGE, value) |
value | 908 | include/linux/soundcard.h | #define SEQ_EXPRESSION(dev, voice, value) SEQ_CONTROL(dev, voice, CTL_EXPRESSION, value*128) |
value | 909 | include/linux/soundcard.h | #define SEQ_MAIN_VOLUME(dev, voice, value) SEQ_CONTROL(dev, voice, CTL_MAIN_VOLUME, (value*16383)/100) |
value | 942 | include/linux/soundcard.h | #define SEQ_SET_TEMPO(value) _TIMER_EVENT(TMR_TEMPO, value) |
value | 250 | kernel/bios32.c | unsigned char device_fn, unsigned char where, unsigned char *value) |
value | 259 | kernel/bios32.c | : "=c" (*value), |
value | 269 | kernel/bios32.c | unsigned char device_fn, unsigned char where, unsigned short *value) |
value | 278 | kernel/bios32.c | : "=c" (*value), |
value | 288 | kernel/bios32.c | unsigned char device_fn, unsigned char where, unsigned long *value) |
value | 297 | kernel/bios32.c | : "=c" (*value), |
value | 307 | kernel/bios32.c | unsigned char device_fn, unsigned char where, unsigned char value) |
value | 318 | kernel/bios32.c | "c" (value), |
value | 326 | kernel/bios32.c | unsigned char device_fn, unsigned char where, unsigned short value) |
value | 337 | kernel/bios32.c | "c" (value), |
value | 345 | kernel/bios32.c | unsigned char device_fn, unsigned char where, unsigned long value) |
value | 356 | kernel/bios32.c | "c" (value), |
value | 17 | kernel/itimer.c | static unsigned long tvtojiffies(struct timeval *value) |
value | 19 | kernel/itimer.c | return((unsigned long )value->tv_sec * HZ + |
value | 20 | kernel/itimer.c | (unsigned long )(value->tv_usec + (1000000 / HZ - 1)) / |
value | 24 | kernel/itimer.c | static void jiffiestotv(unsigned long jiffies, struct timeval *value) |
value | 26 | kernel/itimer.c | value->tv_usec = (jiffies % HZ) * (1000000 / HZ); |
value | 27 | kernel/itimer.c | value->tv_sec = jiffies / HZ; |
value | 31 | kernel/itimer.c | int _getitimer(int which, struct itimerval *value) |
value | 51 | kernel/itimer.c | jiffiestotv(val, &value->it_value); |
value | 52 | kernel/itimer.c | jiffiestotv(interval, &value->it_interval); |
value | 56 | kernel/itimer.c | asmlinkage int sys_getitimer(int which, struct itimerval *value) |
value | 61 | kernel/itimer.c | if (!value) |
value | 66 | kernel/itimer.c | error = verify_area(VERIFY_WRITE, value, sizeof(struct itimerval)); |
value | 69 | kernel/itimer.c | memcpy_tofs(value, &get_buffer, sizeof(get_buffer)); |
value | 73 | kernel/itimer.c | int _setitimer(int which, struct itimerval *value, struct itimerval *ovalue) |
value | 78 | kernel/itimer.c | i = tvtojiffies(&value->it_interval); |
value | 79 | kernel/itimer.c | j = tvtojiffies(&value->it_value); |
value | 110 | kernel/itimer.c | asmlinkage int sys_setitimer(int which, struct itimerval *value, struct itimerval *ovalue) |
value | 115 | kernel/itimer.c | if (!value) |
value | 118 | kernel/itimer.c | memcpy_fromfs(&set_buffer, value, sizeof(set_buffer)); |
value | 331 | kernel/module.c | isym.value = (unsigned long)mp; |
value | 340 | kernel/module.c | isym.value = (unsigned long)from->addr; |
value | 19 | kernel/vsprintf.c | unsigned long result = 0,value; |
value | 32 | kernel/vsprintf.c | while (isxdigit(*cp) && (value = isdigit(*cp) ? *cp-'0' : (islower(*cp) |
value | 34 | kernel/vsprintf.c | result = result*base + value; |
value | 37 | mm/vmalloc.c | static inline void set_pgdir(unsigned long dindex, unsigned long value) |
value | 43 | mm/vmalloc.c | ((unsigned long *) p->tss.cr3)[dindex] = value; |
value | 261 | zBoot/gzip.h | void send_bits OF((int value, int length)); |
value | 262 | zBoot/gzip.h | unsigned bi_reverse OF((unsigned value, int length)); |