tag | line | file | source code |
value | 85 | drivers/char/keyboard.c | typedef void (*k_hand)(unsigned char value, char up_flag); |
value | 87 | drivers/char/keyboard.c | static void do_self(unsigned char value, char up_flag); |
value | 88 | drivers/char/keyboard.c | static void do_fn(unsigned char value, char up_flag); |
value | 89 | drivers/char/keyboard.c | static void do_spec(unsigned char value, char up_flag); |
value | 90 | drivers/char/keyboard.c | static void do_pad(unsigned char value, char up_flag); |
value | 91 | drivers/char/keyboard.c | static void do_dead(unsigned char value, char up_flag); |
value | 92 | drivers/char/keyboard.c | static void do_cons(unsigned char value, char up_flag); |
value | 93 | drivers/char/keyboard.c | static void do_cur(unsigned char value, char up_flag); |
value | 94 | drivers/char/keyboard.c | static void do_shift(unsigned char value, char up_flag); |
value | 95 | drivers/char/keyboard.c | static void do_meta(unsigned char value, char up_flag); |
value | 96 | drivers/char/keyboard.c | static void do_ascii(unsigned char value, char up_flag); |
value | 97 | drivers/char/keyboard.c | static void do_lock(unsigned char value, char up_flag); |
value | 424 | drivers/char/keyboard.c | static void do_spec(unsigned char value, char up_flag) |
value | 434 | drivers/char/keyboard.c | if (value >= sizeof(fn_table)/sizeof(fnp)) |
value | 438 | drivers/char/keyboard.c | if (!fn_table[value]) |
value | 440 | drivers/char/keyboard.c | fn_table[value](); |
value | 443 | drivers/char/keyboard.c | static void do_self(unsigned char value, char up_flag) |
value | 448 | drivers/char/keyboard.c | value = handle_diacr(value); |
value | 452 | drivers/char/keyboard.c | if ((value >= 'a' && value <= 'z') |
value | 453 | drivers/char/keyboard.c | || (value >= 224 && value <= 254)) { |
value | 454 | drivers/char/keyboard.c | value -= 32; |
value | 457 | drivers/char/keyboard.c | put_queue(value); |
value | 466 | drivers/char/keyboard.c | static void do_dead(unsigned char value, char up_flag) |
value | 471 | drivers/char/keyboard.c | if (diacr == value) { /* pressed twice */ |
value | 473 | drivers/char/keyboard.c | put_queue(ret_diacr[value]); |
value | 476 | drivers/char/keyboard.c | diacr = value; |
value | 519 | drivers/char/keyboard.c | static void do_cons(unsigned char value, char up_flag) |
value | 523 | drivers/char/keyboard.c | want_console = value; |
value | 526 | drivers/char/keyboard.c | static void do_fn(unsigned char value, char up_flag) |
value | 530 | drivers/char/keyboard.c | puts_queue(func_table[value]); |
value | 533 | drivers/char/keyboard.c | static void do_pad(unsigned char value, char up_flag) |
value | 543 | drivers/char/keyboard.c | applkey(app_map[value], 1); |
value | 548 | drivers/char/keyboard.c | switch (value) { |
value | 585 | drivers/char/keyboard.c | put_queue(pad_chars[value]); |
value | 586 | drivers/char/keyboard.c | if (value == KVAL(K_PENTER) && vc_kbd_flag(kbd, VC_CRLF)) |
value | 590 | drivers/char/keyboard.c | static void do_cur(unsigned char value, char up_flag) |
value | 596 | drivers/char/keyboard.c | applkey(cur_chars[value], vc_kbd_flag(kbd,VC_CKMODE)); |
value | 599 | drivers/char/keyboard.c | static void do_shift(unsigned char value, char up_flag) |
value | 607 | drivers/char/keyboard.c | if (value == KVAL(K_CAPSSHIFT)) { |
value | 608 | drivers/char/keyboard.c | value = KVAL(K_SHIFT); |
value | 613 | drivers/char/keyboard.c | if (k_down[value]) |
value | 614 | drivers/char/keyboard.c | k_down[value]--; |
value | 616 | drivers/char/keyboard.c | k_down[value]++; |
value | 618 | drivers/char/keyboard.c | if (k_down[value]) |
value | 619 | drivers/char/keyboard.c | shift_state |= (1 << value); |
value | 621 | drivers/char/keyboard.c | shift_state &= ~ (1 << value); |
value | 630 | drivers/char/keyboard.c | static void do_meta(unsigned char value, char up_flag) |
value | 637 | drivers/char/keyboard.c | put_queue(value); |
value | 639 | drivers/char/keyboard.c | put_queue(value | 0x80); |
value | 642 | drivers/char/keyboard.c | static void do_ascii(unsigned char value, char up_flag) |
value | 647 | drivers/char/keyboard.c | npadch = (npadch * 10 + value) % 1000; |
value | 652 | drivers/char/keyboard.c | static void do_lock(unsigned char value, char up_flag) |
value | 656 | drivers/char/keyboard.c | switch (value) { |
value | 231 | drivers/char/serial.c | static inline void serial_out(struct async_struct *info, int offset, int value) |
value | 235 | drivers/char/serial.c | outb(value, info->port+1); |
value | 237 | drivers/char/serial.c | outb(value, info->port+offset); |
value | 241 | drivers/char/serial.c | int value) |
value | 245 | drivers/char/serial.c | outb_p(value, info->port+1); |
value | 247 | drivers/char/serial.c | outb_p(value, info->port+offset); |
value | 1222 | drivers/char/serial.c | static int get_modem_info(struct async_struct * info, unsigned int *value) |
value | 1237 | drivers/char/serial.c | put_fs_long(result,(unsigned long *) value); |
value | 1242 | drivers/char/serial.c | unsigned int *value) |
value | 1245 | 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 | 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 | 326 | drivers/scsi/NCR5380.c | unsigned char value; |
value | 352 | drivers/scsi/NCR5380.c | for (i = 0; (phases[i].value != PHASE_UNKNOWN) && |
value | 353 | 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 | 165 | drivers/scsi/pas16.h | #define NCR5380_write(reg, value) ( outb((value),PAS16_io_port(reg)) ) |
value | 171 | drivers/scsi/pas16.h | #define NCR5380_write(reg, value) \ |
value | 173 | drivers/scsi/pas16.h | instance->hostno, (value), (reg), PAS16_io_port(reg)), \ |
value | 174 | drivers/scsi/pas16.h | outb( (value),PAS16_io_port(reg) ) ) |
value | 142 | drivers/scsi/t128.h | #define NCR5380_write(reg, value) (*(T128_address(reg)) = (value)) |
value | 148 | drivers/scsi/t128.h | #define NCR5380_write(reg, value) { \ |
value | 150 | drivers/scsi/t128.h | instance->hostno, (value), (reg), T128_address(reg)); \ |
value | 151 | drivers/scsi/t128.h | *(T128_address(reg)) = (value); \ |
value | 97 | drivers/sound/dev_table.h | void (*controller) (int dev, int voice, int ctrl_num, int value); |
value | 98 | drivers/sound/dev_table.h | void (*panning) (int dev, int voice, int value); |
value | 883 | drivers/sound/gus_wave.c | guswave_panning (int dev, int voice, int value) |
value | 886 | drivers/sound/gus_wave.c | voices[voice].panning = value; |
value | 1023 | drivers/sound/gus_wave.c | guswave_controller (int dev, int voice, int ctrl_num, int value) |
value | 1034 | drivers/sound/gus_wave.c | voices[voice].bender = value; |
value | 1035 | drivers/sound/gus_wave.c | freq = compute_finetune (voices[voice].orig_freq, value, voices[voice].bender_range); |
value | 1045 | drivers/sound/gus_wave.c | voices[voice].bender_range = value; |
value | 1050 | drivers/sound/gus_wave.c | voices[voice].expression_vol = value; |
value | 1056 | drivers/sound/gus_wave.c | voices[voice].main_vol = value; |
value | 823 | drivers/sound/opl3.c | opl3_controller (int dev, int voice, int ctrl_num, int value) |
value | 840 | drivers/sound/opl3.c | voices[voice].bender = value; |
value | 841 | drivers/sound/opl3.c | if (!value) |
value | 861 | drivers/sound/opl3.c | voices[voice].bender_range = value; |
value | 113 | drivers/sound/pas.h | unsigned int value:8; |
value | 52 | drivers/sound/sb_mixer.c | sb_setmixer (unsigned int port, unsigned int value) |
value | 59 | drivers/sound/sb_mixer.c | OUTB ((unsigned char)(value & 0xff), MIXER_DATA); |
value | 133 | drivers/sound/sb_mixer.c | sb_mixer_set (int dev, int value) |
value | 135 | drivers/sound/sb_mixer.c | int left = value & 0x000000ff; |
value | 136 | drivers/sound/sb_mixer.c | int right = (value & 0x0000ff00) >> 8; |
value | 97 | drivers/sound/sound_calls.h | int snd_ioctl_return(int *addr, int value); |
value | 134 | drivers/sound/sound_calls.h | void sb_setmixer (unsigned int port, unsigned int value); |
value | 50 | drivers/sound/soundcard.c | snd_ioctl_return (int *addr, int value) |
value | 52 | drivers/sound/soundcard.c | if (value < 0) |
value | 53 | drivers/sound/soundcard.c | return value; |
value | 55 | 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 | 189 | fs/ext2/super.c | if (!value || !*value) |
value | 191 | fs/ext2/super.c | else if (!strcmp (value, "none")) { |
value | 195 | fs/ext2/super.c | else if (strcmp (value, "normal")) |
value | 197 | fs/ext2/super.c | else if (strcmp (value, "strict")) { |
value | 203 | fs/ext2/super.c | value); |
value | 210 | fs/ext2/super.c | if (!value || !*value) { |
value | 215 | fs/ext2/super.c | if (!strcmp (value, "continue")) { |
value | 220 | fs/ext2/super.c | else if (!strcmp (value, "remount-ro")) { |
value | 225 | fs/ext2/super.c | else if (!strcmp (value, "panic")) { |
value | 232 | fs/ext2/super.c | value); |
value | 245 | fs/ext2/super.c | if (!value || !*value) { |
value | 250 | fs/ext2/super.c | *sb_block = simple_strtoul (value, &value, 0); |
value | 251 | fs/ext2/super.c | if (*value) { |
value | 253 | fs/ext2/super.c | value); |
value | 23 | fs/ext2/truncate.c | #define clear_block(addr,size,value) \ |
value | 28 | fs/ext2/truncate.c | :"a" (value), "c" (size / 4), "D" ((long) (addr)) \ |
value | 67 | fs/isofs/inode.c | char *this_char,*value; |
value | 84 | fs/isofs/inode.c | if ((value = strchr(this_char,'=')) != NULL) |
value | 85 | fs/isofs/inode.c | *value++ = 0; |
value | 86 | fs/isofs/inode.c | if (!strcmp(this_char,"map") && value) { |
value | 87 | fs/isofs/inode.c | if (value[0] && !value[1] && strchr("on",*value)) |
value | 88 | fs/isofs/inode.c | *map = *value; |
value | 89 | fs/isofs/inode.c | else if (!strcmp(value,"off")) *map = 'o'; |
value | 90 | fs/isofs/inode.c | else if (!strcmp(value,"normal")) *map = 'n'; |
value | 93 | fs/isofs/inode.c | else if (!strcmp(this_char,"conv") && value) { |
value | 94 | fs/isofs/inode.c | if (value[0] && !value[1] && strchr("bta",*value)) |
value | 95 | fs/isofs/inode.c | *conversion = *value; |
value | 96 | fs/isofs/inode.c | else if (!strcmp(value,"binary")) *conversion = 'b'; |
value | 97 | fs/isofs/inode.c | else if (!strcmp(value,"text")) *conversion = 't'; |
value | 98 | fs/isofs/inode.c | else if (!strcmp(value,"mtext")) *conversion = 'm'; |
value | 99 | fs/isofs/inode.c | else if (!strcmp(value,"auto")) *conversion = 'a'; |
value | 102 | fs/isofs/inode.c | else if (!strcmp(this_char,"block") && value) { |
value | 103 | 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 | 32 | include/asm/io.h | extern inline void __out##s(unsigned x value, unsigned short port) { |
value | 38 | include/asm/io.h | __OUT1(s,x) __OUT2(s,s1,"w") : : "a" (value), "d" (port)); } \ |
value | 39 | include/asm/io.h | __OUT1(s##c,x) __OUT2(s,s1,"") : : "a" (value), "i" (port)); } \ |
value | 40 | include/asm/io.h | __OUT1(s##_p,x) __OUT2(s,s1,"w") : : "a" (value), "d" (port)); SLOW_DOWN_IO; } \ |
value | 41 | include/asm/io.h | __OUT1(s##c_p,x) __OUT2(s,s1,"") : : "a" (value), "i" (port)); SLOW_DOWN_IO; } |
value | 37 | include/linux/module.h | unsigned long value; /* value of symbol */ |
value | 691 | include/linux/soundcard.h | #define SEQ_CONTROL(dev, voice, controller, value) {_SEQ_NEEDBUF(8);\ |
value | 697 | include/linux/soundcard.h | *(short *)&_seqbuf[_seqbufptr+5] = (value);\ |
value | 701 | include/linux/soundcard.h | #define SEQ_PITCHBEND(dev, voice, value) SEQ_CONTROL(dev, voice, CTRL_PITCH_BENDER, value) |
value | 702 | include/linux/soundcard.h | #define SEQ_BENDER_RANGE(dev, voice, value) SEQ_CONTROL(dev, voice, CTRL_PITCH_BENDER_RANGE, value) |
value | 703 | include/linux/soundcard.h | #define SEQ_EXPRESSION(dev, voice, value) SEQ_CONTROL(dev, voice, CTRL_EXPRESSION, value) |
value | 704 | include/linux/soundcard.h | #define SEQ_MAIN_VOLUME(dev, voice, value) SEQ_CONTROL(dev, voice, CTRL_MAIN_VOLUME, 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 | 101 | kernel/itimer.c | asmlinkage int sys_setitimer(int which, struct itimerval *value, struct itimerval *ovalue) |
value | 106 | kernel/itimer.c | if (!value) |
value | 109 | kernel/itimer.c | memcpy_fromfs(&set_buffer, value, sizeof(set_buffer)); |
value | 154 | kernel/module.c | sym.value = 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)); |