tag | line | file | source code |
value | 99 | drivers/char/keyboard.c | typedef void (*k_hand)(unsigned char value, char up_flag); |
value | 100 | drivers/char/keyboard.c | typedef void (k_handfn)(unsigned char value, char up_flag); |
value | 505 | drivers/char/keyboard.c | static void do_spec(unsigned char value, char up_flag) |
value | 517 | drivers/char/keyboard.c | if (value >= SIZE(fn_table)) |
value | 519 | drivers/char/keyboard.c | if (!fn_table[value]) |
value | 521 | drivers/char/keyboard.c | fn_table[value](); |
value | 524 | drivers/char/keyboard.c | static void do_lowercase(unsigned char value, char up_flag) |
value | 529 | drivers/char/keyboard.c | static void do_self(unsigned char value, char up_flag) |
value | 535 | drivers/char/keyboard.c | value = handle_diacr(value); |
value | 539 | drivers/char/keyboard.c | diacr = value; |
value | 543 | drivers/char/keyboard.c | put_queue(value); |
value | 557 | drivers/char/keyboard.c | static void do_dead(unsigned char value, char up_flag) |
value | 562 | drivers/char/keyboard.c | value = ret_diacr[value]; |
value | 563 | drivers/char/keyboard.c | if (diacr == value) { /* pressed twice */ |
value | 565 | drivers/char/keyboard.c | put_queue(value); |
value | 568 | drivers/char/keyboard.c | diacr = value; |
value | 593 | drivers/char/keyboard.c | static void do_cons(unsigned char value, char up_flag) |
value | 597 | drivers/char/keyboard.c | want_console = value; |
value | 600 | drivers/char/keyboard.c | static void do_fn(unsigned char value, char up_flag) |
value | 604 | drivers/char/keyboard.c | if (value < SIZE(func_table)) |
value | 605 | drivers/char/keyboard.c | puts_queue(func_table[value]); |
value | 607 | drivers/char/keyboard.c | printk("do_fn called with value=%d\n", value); |
value | 610 | drivers/char/keyboard.c | static void do_pad(unsigned char value, char up_flag) |
value | 620 | drivers/char/keyboard.c | applkey(app_map[value], 1); |
value | 625 | drivers/char/keyboard.c | switch (value) { |
value | 662 | drivers/char/keyboard.c | put_queue(pad_chars[value]); |
value | 663 | drivers/char/keyboard.c | if (value == KVAL(K_PENTER) && vc_kbd_mode(kbd, VC_CRLF)) |
value | 667 | drivers/char/keyboard.c | static void do_cur(unsigned char value, char up_flag) |
value | 673 | drivers/char/keyboard.c | applkey(cur_chars[value], vc_kbd_mode(kbd,VC_CKMODE)); |
value | 676 | drivers/char/keyboard.c | static void do_shift(unsigned char value, char up_flag) |
value | 684 | drivers/char/keyboard.c | if (value == KVAL(K_CAPSSHIFT)) { |
value | 685 | drivers/char/keyboard.c | value = KVAL(K_SHIFT); |
value | 692 | drivers/char/keyboard.c | if (k_down[value]) |
value | 693 | drivers/char/keyboard.c | k_down[value]--; |
value | 695 | drivers/char/keyboard.c | k_down[value]++; |
value | 697 | drivers/char/keyboard.c | if (k_down[value]) |
value | 698 | drivers/char/keyboard.c | shift_state |= (1 << value); |
value | 700 | drivers/char/keyboard.c | shift_state &= ~ (1 << value); |
value | 734 | drivers/char/keyboard.c | static void do_meta(unsigned char value, char up_flag) |
value | 741 | drivers/char/keyboard.c | put_queue(value); |
value | 743 | drivers/char/keyboard.c | put_queue(value | 0x80); |
value | 746 | drivers/char/keyboard.c | static void do_ascii(unsigned char value, char up_flag) |
value | 752 | drivers/char/keyboard.c | npadch = value; |
value | 754 | drivers/char/keyboard.c | npadch = (npadch * 10 + value) % 1000; |
value | 757 | drivers/char/keyboard.c | static void do_lock(unsigned char value, char up_flag) |
value | 761 | drivers/char/keyboard.c | chg_vc_kbd_lock(kbd, value); |
value | 229 | drivers/char/serial.c | static inline void serial_out(struct async_struct *info, int offset, int value) |
value | 233 | drivers/char/serial.c | outb(value, info->port+1); |
value | 235 | drivers/char/serial.c | outb(value, info->port+offset); |
value | 239 | drivers/char/serial.c | int value) |
value | 243 | drivers/char/serial.c | outb_p(value, info->port+1); |
value | 245 | drivers/char/serial.c | outb_p(value, info->port+offset); |
value | 1229 | drivers/char/serial.c | static int get_modem_info(struct async_struct * info, unsigned int *value) |
value | 1244 | drivers/char/serial.c | put_fs_long(result,(unsigned long *) value); |
value | 1249 | drivers/char/serial.c | unsigned int *value) |
value | 1252 | 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 | 1332 | drivers/net/depca.c | static char asc2hex(char value); |
value | 1410 | drivers/net/depca.c | static char asc2hex(char value) |
value | 1412 | drivers/net/depca.c | value -= 0x30; /* normalise to 0..9 range */ |
value | 1413 | drivers/net/depca.c | if (value >= 0) { |
value | 1414 | drivers/net/depca.c | if (value > 9) { /* but may not be 10..15 */ |
value | 1415 | drivers/net/depca.c | value &= 0x1f; /* make A..F & a..f be the same */ |
value | 1416 | drivers/net/depca.c | value -= 0x07; /* normalise to 10..15 range */ |
value | 1417 | drivers/net/depca.c | if ((value < 0x0a) || (value > 0x0f)) { /* if outside range then... */ |
value | 1418 | drivers/net/depca.c | value = -1; /* ...signal error */ |
value | 1422 | drivers/net/depca.c | value = -1; /* ...signal error */ |
value | 1424 | 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 | 367 | drivers/scsi/NCR5380.c | unsigned char value; |
value | 393 | drivers/scsi/NCR5380.c | for (i = 0; (phases[i].value != PHASE_UNKNOWN) && |
value | 394 | 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 | 1142 | drivers/sound/gus_wave.c | guswave_panning (int dev, int voice, int value) |
value | 1145 | drivers/sound/gus_wave.c | voices[voice].panning = value; |
value | 1298 | drivers/sound/gus_wave.c | guswave_controller (int dev, int voice, int ctrl_num, int value) |
value | 1309 | drivers/sound/gus_wave.c | voices[voice].bender = value; |
value | 1313 | drivers/sound/gus_wave.c | freq = compute_finetune (voices[voice].orig_freq, value, voices[voice].bender_range); |
value | 1324 | drivers/sound/gus_wave.c | voices[voice].bender_range = value; |
value | 1328 | drivers/sound/gus_wave.c | value /= 128; |
value | 1332 | drivers/sound/gus_wave.c | voices[voice].expression_vol = value; |
value | 1339 | drivers/sound/gus_wave.c | voices[voice].panning = (value * 2) - 128; |
value | 1343 | drivers/sound/gus_wave.c | value = (value * 100) / 16383; |
value | 1348 | drivers/sound/gus_wave.c | voices[voice].main_vol = value; |
value | 2734 | drivers/sound/gus_wave.c | guswave_bender (int dev, int voice, int value) |
value | 2739 | drivers/sound/gus_wave.c | voices[voice].bender = value - 8192; |
value | 2740 | drivers/sound/gus_wave.c | freq = compute_finetune (voices[voice].orig_freq, value, voices[voice].bender_range); |
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 | 247 | fs/ext2/super.c | if (!value || !*value) { |
value | 252 | fs/ext2/super.c | *sb_block = simple_strtoul (value, &value, 0); |
value | 253 | fs/ext2/super.c | if (*value) { |
value | 255 | fs/ext2/super.c | value); |
value | 28 | fs/ext2/truncate.c | #define clear_block(addr,size,value) \ |
value | 33 | fs/ext2/truncate.c | :"a" (value), "c" (size / 4), "D" ((long) (addr)) \ |
value | 70 | fs/isofs/inode.c | char *this_char,*value; |
value | 87 | fs/isofs/inode.c | if ((value = strchr(this_char,'=')) != NULL) |
value | 88 | fs/isofs/inode.c | *value++ = 0; |
value | 89 | fs/isofs/inode.c | if (!strcmp(this_char,"map") && value) { |
value | 90 | fs/isofs/inode.c | if (value[0] && !value[1] && strchr("on",*value)) |
value | 91 | fs/isofs/inode.c | *map = *value; |
value | 92 | fs/isofs/inode.c | else if (!strcmp(value,"off")) *map = 'o'; |
value | 93 | fs/isofs/inode.c | else if (!strcmp(value,"normal")) *map = 'n'; |
value | 96 | fs/isofs/inode.c | else if (!strcmp(this_char,"conv") && value) { |
value | 97 | fs/isofs/inode.c | if (value[0] && !value[1] && strchr("bta",*value)) |
value | 98 | fs/isofs/inode.c | *conversion = *value; |
value | 99 | fs/isofs/inode.c | else if (!strcmp(value,"binary")) *conversion = 'b'; |
value | 100 | fs/isofs/inode.c | else if (!strcmp(value,"text")) *conversion = 't'; |
value | 101 | fs/isofs/inode.c | else if (!strcmp(value,"mtext")) *conversion = 'm'; |
value | 102 | fs/isofs/inode.c | else if (!strcmp(value,"auto")) *conversion = 'a'; |
value | 105 | fs/isofs/inode.c | else if (!strcmp(this_char,"block") && value) { |
value | 106 | 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/io.h | extern inline void __out##s(unsigned x value, unsigned short port) { |
value | 51 | include/asm/io.h | __OUT1(s,x) __OUT2(s,s1,"w") : : "a" (value), "d" (port)); } \ |
value | 52 | include/asm/io.h | __OUT1(s##c,x) __OUT2(s,s1,"") : : "a" (value), "i" (port)); } \ |
value | 53 | include/asm/io.h | __OUT1(s##_p,x) __OUT2(s,s1,"w") : : "a" (value), "d" (port)); SLOW_DOWN_IO; } \ |
value | 54 | 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 | 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 | 156 | 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)); |