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 | 225 | drivers/char/serial.c | static inline void serial_out(struct async_struct *info, int offset, int value) |
value | 229 | drivers/char/serial.c | outb(value, info->port+1); |
value | 231 | drivers/char/serial.c | outb(value, info->port+offset); |
value | 235 | drivers/char/serial.c | int value) |
value | 239 | drivers/char/serial.c | outb_p(value, info->port+1); |
value | 241 | drivers/char/serial.c | outb_p(value, info->port+offset); |
value | 1155 | drivers/char/serial.c | static int get_modem_info(struct async_struct * info, unsigned int *value) |
value | 1170 | drivers/char/serial.c | put_fs_long(result,(unsigned long *) value); |
value | 1175 | drivers/char/serial.c | unsigned int *value) |
value | 1178 | drivers/char/serial.c | unsigned int arg = get_fs_long((unsigned long *) value); |
value | 22 | drivers/net/iow.h | extern inline void __outw(unsigned short value, unsigned short port) |
value | 26 | drivers/net/iow.h | :"a" (value),"d" (port)); |
value | 30 | drivers/net/iow.h | extern inline void __outwc(unsigned short value, unsigned short port) |
value | 34 | drivers/net/iow.h | :"a" (value),"i" (port)); |
value | 55 | drivers/net/iow.h | extern inline void __outw_p(unsigned short value, unsigned short port) |
value | 59 | drivers/net/iow.h | :"a" (value),"d" (port)); |
value | 63 | drivers/net/iow.h | extern inline void __outwc_p(unsigned short value, unsigned short port) |
value | 67 | drivers/net/iow.h | :"a" (value),"i" (port)); |
value | 135 | drivers/net/ne.c | struct {unsigned char value, offset; } program_seq[] = { |
value | 151 | 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 | 339 | drivers/scsi/fdomain.c | inline static void outw( unsigned short value, unsigned short port ) |
value | 342 | drivers/scsi/fdomain.c | : :"a" ((unsigned short) value), |
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 | 305 | drivers/scsi/ultrastor.c | static inline void outl(unsigned int value, unsigned short port) |
value | 308 | drivers/scsi/ultrastor.c | : :"a" (value),"d" ((unsigned short) port)); |
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 | 879 | drivers/sound/gus_wave.c | guswave_panning (int dev, int voice, int value) |
value | 882 | drivers/sound/gus_wave.c | voices[voice].panning = value; |
value | 1008 | drivers/sound/gus_wave.c | guswave_controller (int dev, int voice, int ctrl_num, int value) |
value | 1019 | drivers/sound/gus_wave.c | voices[voice].bender = value; |
value | 1020 | drivers/sound/gus_wave.c | freq = compute_finetune (voices[voice].orig_freq, value, voices[voice].bender_range); |
value | 1030 | drivers/sound/gus_wave.c | voices[voice].bender_range = value; |
value | 1035 | drivers/sound/gus_wave.c | voices[voice].expression_vol = value; |
value | 1041 | drivers/sound/gus_wave.c | voices[voice].main_vol = value; |
value | 824 | drivers/sound/opl3.c | opl3_controller (int dev, int voice, int ctrl_num, int value) |
value | 841 | drivers/sound/opl3.c | voices[voice].bender = value; |
value | 842 | drivers/sound/opl3.c | if (!value) |
value | 862 | 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 char port, unsigned char value) |
value | 59 | drivers/sound/sb_mixer.c | OUTB (value, 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 | 119 | drivers/sound/sound_calls.h | void sb_setmixer (unsigned char port, unsigned char value); |
value | 199 | drivers/sound/soundcard.c | snd_ioctl_return (int *addr, int value) |
value | 201 | drivers/sound/soundcard.c | if (value < 0) |
value | 202 | drivers/sound/soundcard.c | return value; |
value | 204 | drivers/sound/soundcard.c | PUT_WORD_TO_USER (addr, 0, value); |
value | 175 | fs/ext2/super.c | char * value; |
value | 182 | fs/ext2/super.c | if ((value = strchr (this_char, '=')) != NULL) |
value | 183 | fs/ext2/super.c | *value++ = 0; |
value | 187 | fs/ext2/super.c | if (!value || !*value) |
value | 189 | fs/ext2/super.c | *sb_block = simple_strtoul (value, &value, 0); |
value | 190 | fs/ext2/super.c | if (*value) |
value | 21 | fs/ext2/truncate.c | #define clear_block(addr,size,value) \ |
value | 26 | 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 | 28 | include/asm/io.h | extern inline void __outb(unsigned char value, unsigned short port) |
value | 32 | include/asm/io.h | :"a" (value),"d" (port)); |
value | 36 | include/asm/io.h | extern inline void __outbc(unsigned char value, unsigned short port) |
value | 40 | include/asm/io.h | :"a" (value),"i" (port)); |
value | 61 | include/asm/io.h | extern inline void __outb_p(unsigned char value, unsigned short port) |
value | 65 | include/asm/io.h | :"a" (value),"d" (port)); |
value | 69 | include/asm/io.h | extern inline void __outbc_p(unsigned char value, unsigned short port) |
value | 73 | include/asm/io.h | :"a" (value),"i" (port)); |
value | 37 | include/linux/module.h | unsigned long value; /* value of symbol */ |
value | 689 | include/linux/soundcard.h | #define SEQ_CONTROL(dev, voice, controller, value) {_SEQ_NEEDBUF(8);\ |
value | 695 | include/linux/soundcard.h | *(short *)&_seqbuf[_seqbufptr+5] = (value);\ |
value | 699 | include/linux/soundcard.h | #define SEQ_PITCHBEND(dev, voice, value) SEQ_CONTROL(dev, voice, CTRL_PITCH_BENDER, value) |
value | 700 | include/linux/soundcard.h | #define SEQ_BENDER_RANGE(dev, voice, value) SEQ_CONTROL(dev, voice, CTRL_PITCH_BENDER_RANGE, value) |
value | 701 | include/linux/soundcard.h | #define SEQ_EXPRESSION(dev, voice, value) SEQ_CONTROL(dev, voice, CTRL_EXPRESSION, value) |
value | 702 | 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)); |