taglinefilesource code
value107drivers/char/keyboard.ctypedef void (*k_hand)(unsigned char value, char up_flag);
value108drivers/char/keyboard.ctypedef void (k_handfn)(unsigned char value, char up_flag);
value528drivers/char/keyboard.cstatic void do_spec(unsigned char value, char up_flag)
value540drivers/char/keyboard.cif (value >= SIZE(fn_table))
value542drivers/char/keyboard.cif (!fn_table[value])
value544drivers/char/keyboard.cfn_table[value]();
value547drivers/char/keyboard.cstatic void do_lowercase(unsigned char value, char up_flag)
value552drivers/char/keyboard.cstatic void do_self(unsigned char value, char up_flag)
value558drivers/char/keyboard.cvalue = handle_diacr(value);
value562drivers/char/keyboard.cdiacr = value;
value566drivers/char/keyboard.cput_queue(value);
value580drivers/char/keyboard.cstatic void do_dead(unsigned char value, char up_flag)
value585drivers/char/keyboard.cvalue = ret_diacr[value];
value586drivers/char/keyboard.cif (diacr == value) {   /* pressed twice */
value588drivers/char/keyboard.cput_queue(value);
value591drivers/char/keyboard.cdiacr = value;
value616drivers/char/keyboard.cstatic void do_cons(unsigned char value, char up_flag)
value620drivers/char/keyboard.cwant_console = value;
value623drivers/char/keyboard.cstatic void do_fn(unsigned char value, char up_flag)
value627drivers/char/keyboard.cif (value < SIZE(func_table))
value628drivers/char/keyboard.cputs_queue(func_table[value]);
value630drivers/char/keyboard.cprintk("do_fn called with value=%d\n", value);
value633drivers/char/keyboard.cstatic void do_pad(unsigned char value, char up_flag)
value643drivers/char/keyboard.capplkey(app_map[value], 1);
value648drivers/char/keyboard.cswitch (value) {
value685drivers/char/keyboard.cput_queue(pad_chars[value]);
value686drivers/char/keyboard.cif (value == KVAL(K_PENTER) && vc_kbd_mode(kbd, VC_CRLF))
value690drivers/char/keyboard.cstatic void do_cur(unsigned char value, char up_flag)
value696drivers/char/keyboard.capplkey(cur_chars[value], vc_kbd_mode(kbd,VC_CKMODE));
value699drivers/char/keyboard.cstatic void do_shift(unsigned char value, char up_flag)
value707drivers/char/keyboard.cif (value == KVAL(K_CAPSSHIFT)) {
value708drivers/char/keyboard.cvalue = KVAL(K_SHIFT);
value716drivers/char/keyboard.cif (k_down[value])
value717drivers/char/keyboard.ck_down[value]--;
value719drivers/char/keyboard.ck_down[value]++;
value721drivers/char/keyboard.cif (k_down[value])
value722drivers/char/keyboard.cshift_state |= (1 << value);
value724drivers/char/keyboard.cshift_state &= ~ (1 << value);
value758drivers/char/keyboard.cstatic void do_meta(unsigned char value, char up_flag)
value765drivers/char/keyboard.cput_queue(value);
value767drivers/char/keyboard.cput_queue(value | 0x80);
value770drivers/char/keyboard.cstatic void do_ascii(unsigned char value, char up_flag)
value776drivers/char/keyboard.cnpadch = value;
value778drivers/char/keyboard.cnpadch = (npadch * 10 + value) % 1000;
value781drivers/char/keyboard.cstatic void do_lock(unsigned char value, char up_flag)
value785drivers/char/keyboard.cchg_vc_kbd_lock(kbd, value);
value243drivers/char/serial.cstatic inline void serial_out(struct async_struct *info, int offset, int value)
value248drivers/char/serial.coutb(value, info->port+1);
value251drivers/char/serial.coutb(value, info->port+offset);
value255drivers/char/serial.cint value)
value260drivers/char/serial.coutb_p(value, info->port+1);
value264drivers/char/serial.coutb(value, info->port+offset);
value266drivers/char/serial.coutb_p(value, info->port+offset);
value1471drivers/char/serial.cstatic int get_modem_info(struct async_struct * info, unsigned int *value)
value1486drivers/char/serial.cput_fs_long(result,(unsigned long *) value);
value1491drivers/char/serial.cunsigned int *value)
value1493drivers/char/serial.cunsigned int arg = get_fs_long((unsigned long *) value);
value158drivers/net/atp.hwrite_reg(short port, unsigned char reg, unsigned char value)
value167drivers/net/atp.houtval |= value;
value177drivers/net/atp.hwrite_reg_high(short port, unsigned char reg, unsigned char value)
value186drivers/net/atp.houtval = WrAddr | HNib | value;
value197drivers/net/atp.hwrite_reg_byte(short port, unsigned char reg, unsigned char value)
value205drivers/net/atp.houtb((outval & 0xf0) | (value & 0x0f), port + PAR_DATA);
value206drivers/net/atp.houtb(value & 0x0f, port + PAR_DATA);
value207drivers/net/atp.hvalue >>= 4;
value208drivers/net/atp.houtb(value, port + PAR_DATA);
value209drivers/net/atp.houtb(0x10 | value, port + PAR_DATA);
value210drivers/net/atp.houtb(0x10 | value, port + PAR_DATA);
value212drivers/net/atp.houtb(EOC  | value, port + PAR_DATA);   /* Reset the address register. */
value222drivers/net/atp.hextern inline void write_byte_mode0(short ioaddr, unsigned char value)
value224drivers/net/atp.houtb(value & 0x0f, ioaddr + PAR_DATA);
value225drivers/net/atp.houtb((value>>4) | 0x10, ioaddr + PAR_DATA);
value228drivers/net/atp.hextern inline void write_byte_mode1(short ioaddr, unsigned char value)
value230drivers/net/atp.houtb(value & 0x0f, ioaddr + PAR_DATA);
value232drivers/net/atp.houtb((value>>4) | 0x10, ioaddr + PAR_DATA);
value237drivers/net/atp.hextern inline void write_word_mode0(short ioaddr, unsigned short value)
value239drivers/net/atp.houtb(value & 0x0f, ioaddr + PAR_DATA);
value240drivers/net/atp.hvalue >>= 4;
value241drivers/net/atp.houtb((value & 0x0f) | 0x10, ioaddr + PAR_DATA);
value242drivers/net/atp.hvalue >>= 4;
value243drivers/net/atp.houtb(value & 0x0f, ioaddr + PAR_DATA);
value244drivers/net/atp.hvalue >>= 4;
value245drivers/net/atp.houtb((value & 0x0f) | 0x10, ioaddr + PAR_DATA);
value226drivers/net/de620.cbyte value;
value229drivers/net/de620.cwhile ((((value = inb(STATUS_PORT)) & READY) == 0) && (cnt <= 1000))
value235drivers/net/de620.creturn value & 0xf0; /* nibble */
value253drivers/net/de620.cde620_put_byte(byte value)
value257drivers/net/de620.coutb(value, DATA_PORT);
value264drivers/net/de620.cbyte value;
value267drivers/net/de620.cvalue = de620_ready(); /* High nibble */
value269drivers/net/de620.cvalue |= de620_ready() >> 4; /* Low nibble */
value270drivers/net/de620.creturn value;
value313drivers/net/de620.cbyte value;
value336drivers/net/de620.cvalue = inb(STATUS_PORT) & 0xf0; /* High nibble */
value338drivers/net/de620.c*data++ = value | inb(STATUS_PORT) >> 4; /* Low nibble */
value369drivers/net/de620.cde620_set_register(byte reg, byte value)
value375drivers/net/de620.cde620_put_byte(value);
value381drivers/net/de620.cbyte value;
value384drivers/net/de620.cvalue = de620_read_byte();
value387drivers/net/de620.creturn value;
value1395drivers/net/depca.cstatic char asc2hex(char value);
value1459drivers/net/depca.cstatic char asc2hex(char value)
value1461drivers/net/depca.cvalue -= 0x30;                  /* normalise to 0..9 range */
value1462drivers/net/depca.cif (value >= 0) {
value1463drivers/net/depca.cif (value > 9) {              /* but may not be 10..15 */
value1464drivers/net/depca.cvalue &= 0x1f;              /* make A..F & a..f be the same */
value1465drivers/net/depca.cvalue -= 0x07;              /* normalise to 10..15 range */
value1466drivers/net/depca.cif ((value < 0x0a) || (value > 0x0f)) { /* if outside range then... */
value1467drivers/net/depca.cvalue = -1;               /* ...signal error */
value1471drivers/net/depca.cvalue = -1;                   /* ...signal error */
value1473drivers/net/depca.creturn value;                   /* return hex char or error */
value132drivers/net/ne.cstruct {unsigned char value, offset; } program_seq[] = {
value148drivers/net/ne.coutb_p(program_seq[i].value, ioaddr + program_seq[i].offset);
value514drivers/net/sk_g16.cvoid   SK_write_reg(int reg_number, int value);
value1969drivers/net/sk_g16.cvoid SK_write_reg(int reg_number, int value)
value1973drivers/net/sk_g16.cSK_IOREG = value;
value367drivers/scsi/NCR5380.cunsigned char value;
value393drivers/scsi/NCR5380.cfor (i = 0; (phases[i].value != PHASE_UNKNOWN) && 
value394drivers/scsi/NCR5380.c(phases[i].value != (status & PHASE_MASK)); ++i); 
value75drivers/scsi/g_NCR5380.h#define NCR5380_write(reg, value) (outb((value), (port + (reg))))
value166drivers/scsi/pas16.h#define NCR5380_write(reg, value) ( outb((value),PAS16_io_port(reg)) )
value172drivers/scsi/pas16.h#define NCR5380_write(reg, value)           \
value174drivers/scsi/pas16.hinstance->hostno, (value), (reg), PAS16_io_port(reg)),  \
value175drivers/scsi/pas16.houtb( (value),PAS16_io_port(reg) ) )
value1120drivers/scsi/st.cint dev, value;
value1141drivers/scsi/st.cvalue = (options & ~MT_ST_OPTIONS) * ST_BLOCK_SIZE;
value1142drivers/scsi/st.cif (value < 1 || value > st_buffer_size) {
value1144drivers/scsi/st.cvalue);
value1147drivers/scsi/st.cSTp->write_threshold = value;
value143drivers/scsi/t128.h#define NCR5380_write(reg, value) (*(T128_address(reg)) = (value))
value149drivers/scsi/t128.h#define NCR5380_write(reg, value) {          \
value151drivers/scsi/t128.hinstance->hostno, (value), (reg), T128_address(reg));  \
value152drivers/scsi/t128.h*(T128_address(reg)) = (value);          \
value159drivers/sound/dev_table.hvoid (*controller) (int dev, int voice, int ctrl_num, int value);
value160drivers/sound/dev_table.hvoid (*panning) (int dev, int voice, int value);
value163drivers/sound/dev_table.hvoid (*bender) (int dev, int chn, int value);
value970drivers/sound/gus_wave.cguswave_panning (int dev, int voice, int value)
value973drivers/sound/gus_wave.cvoices[voice].panning = value;
value1114drivers/sound/gus_wave.cguswave_controller (int dev, int voice, int ctrl_num, int value)
value1125drivers/sound/gus_wave.cvoices[voice].bender = value;
value1129drivers/sound/gus_wave.cfreq = compute_finetune (voices[voice].orig_freq, value,
value1141drivers/sound/gus_wave.cvoices[voice].bender_range = value;
value1144drivers/sound/gus_wave.cvalue /= 128;
value1148drivers/sound/gus_wave.cvoices[voice].expression_vol = value;
value1155drivers/sound/gus_wave.cvoices[voice].panning = (value * 2) - 128;
value1159drivers/sound/gus_wave.cvalue = (value * 100) / 16383;
value1162drivers/sound/gus_wave.cvoices[voice].main_vol = value;
value2404drivers/sound/gus_wave.cguswave_bender (int dev, int voice, int value)
value2409drivers/sound/gus_wave.cvoices[voice].bender = value - 8192;
value2410drivers/sound/gus_wave.cfreq = compute_finetune (voices[voice].orig_freq, value,
value413drivers/sound/midi_synth.cmidi_synth_controller (int dev, int channel, int ctrl_num, int value)
value436drivers/sound/midi_synth.cmidi_outc (orig_dev, value & 0x7f);
value446drivers/sound/midi_synth.cmidi_synth_bender (int dev, int channel, int value)
value454drivers/sound/midi_synth.cif (value < 0 || value > 16383)
value467drivers/sound/midi_synth.celse if (!prefix_cmd (orig_dev, value & 0x7f))
value470drivers/sound/midi_synth.cmidi_outc (orig_dev, value & 0x7f);
value471drivers/sound/midi_synth.cmidi_outc (orig_dev, (value >> 7) & 0x7f);
value14drivers/sound/midi_synth.hvoid midi_synth_controller (int dev, int channel, int ctrl_num, int value);
value16drivers/sound/midi_synth.hvoid midi_synth_bender (int dev, int chn, int value);
value1002drivers/sound/opl3.cbend_pitch (int dev, int voice, int value)
value1013drivers/sound/opl3.cvoices[voice].bender = value;
value1014drivers/sound/opl3.cif (!value)
value1044drivers/sound/opl3.copl3_controller (int dev, int voice, int ctrl_num, int value)
value1052drivers/sound/opl3.cbend_pitch (dev, voice, value);
value1056drivers/sound/opl3.cvoices[voice].bender_range = value;
value1068drivers/sound/opl3.copl3_bender (int dev, int voice, int value)
value1073drivers/sound/opl3.cbend_pitch (dev, voice, value);
value113drivers/sound/pas.hunsigned int value:8;
value104drivers/sound/pss.cpss_outpw (unsigned short port, unsigned short value)
value108drivers/sound/pss.c:"a"            (value), "d" (port));
value56drivers/sound/sb_mixer.csb_setmixer (unsigned int port, unsigned int value)
value65drivers/sound/sb_mixer.cOUTB ((unsigned char) (value & 0xff), MIXER_DATA);
value185drivers/sound/sb_mixer.csb_mixer_set (int dev, int value)
value187drivers/sound/sb_mixer.cint             left = value & 0x000000ff;
value188drivers/sound/sb_mixer.cint             right = (value & 0x0000ff00) >> 8;
value102drivers/sound/sound_calls.hint snd_ioctl_return(int *addr, int value);
value140drivers/sound/sound_calls.hvoid sb_setmixer (unsigned int port, unsigned int value);
value44drivers/sound/soundcard.csnd_ioctl_return (int *addr, int value)
value46drivers/sound/soundcard.cif (value < 0)
value47drivers/sound/soundcard.creturn value;
value49drivers/sound/soundcard.cPUT_WORD_TO_USER (addr, 0, value);
value179fs/ext2/super.cchar * value;
value186fs/ext2/super.cif ((value = strchr (this_char, '=')) != NULL)
value187fs/ext2/super.c*value++ = 0;
value189fs/ext2/super.cif (!value || !*value)
value191fs/ext2/super.celse if (!strcmp (value, "none")) {
value195fs/ext2/super.celse if (strcmp (value, "normal"))
value197fs/ext2/super.celse if (strcmp (value, "strict")) {
value203fs/ext2/super.cvalue);
value210fs/ext2/super.cif (!value || !*value) {
value215fs/ext2/super.cif (!strcmp (value, "continue")) {
value220fs/ext2/super.celse if (!strcmp (value, "remount-ro")) {
value225fs/ext2/super.celse if (!strcmp (value, "panic")) {
value232fs/ext2/super.cvalue);
value247fs/ext2/super.cif (!value || !*value) {
value252fs/ext2/super.c*sb_block = simple_strtoul (value, &value, 0);
value253fs/ext2/super.cif (*value) {
value255fs/ext2/super.cvalue);
value28fs/ext2/truncate.c#define clear_block(addr,size,value) \
value33fs/ext2/truncate.c:"a" (value), "c" (size / 4), "D" ((long) (addr)) \
value64fs/isofs/inode.cchar *this_char,*value;
value83fs/isofs/inode.cif ((value = strchr(this_char,'=')) != NULL)
value84fs/isofs/inode.c*value++ = 0;
value85fs/isofs/inode.cif (!strcmp(this_char,"map") && value) {
value86fs/isofs/inode.cif (value[0] && !value[1] && strchr("on",*value))
value87fs/isofs/inode.cpopt->map = *value;
value88fs/isofs/inode.celse if (!strcmp(value,"off")) popt->map = 'o';
value89fs/isofs/inode.celse if (!strcmp(value,"normal")) popt->map = 'n';
value92fs/isofs/inode.celse if (!strcmp(this_char,"conv") && value) {
value93fs/isofs/inode.cif (value[0] && !value[1] && strchr("bta",*value))
value94fs/isofs/inode.cpopt->conversion = *value;
value95fs/isofs/inode.celse if (!strcmp(value,"binary")) popt->conversion = 'b';
value96fs/isofs/inode.celse if (!strcmp(value,"text")) popt->conversion = 't';
value97fs/isofs/inode.celse if (!strcmp(value,"mtext")) popt->conversion = 'm';
value98fs/isofs/inode.celse if (!strcmp(value,"auto")) popt->conversion = 'a';
value101fs/isofs/inode.celse if (value && 
value105fs/isofs/inode.cchar * vpnt = value;
value72fs/msdos/inode.cchar *this_char,*value;
value82fs/msdos/inode.cif ((value = strchr(this_char,'=')) != NULL)
value83fs/msdos/inode.c*value++ = 0;
value84fs/msdos/inode.cif (!strcmp(this_char,"check") && value) {
value85fs/msdos/inode.cif (value[0] && !value[1] && strchr("rns",*value))
value86fs/msdos/inode.c*check = *value;
value87fs/msdos/inode.celse if (!strcmp(value,"relaxed")) *check = 'r';
value88fs/msdos/inode.celse if (!strcmp(value,"normal")) *check = 'n';
value89fs/msdos/inode.celse if (!strcmp(value,"strict")) *check = 's';
value92fs/msdos/inode.celse if (!strcmp(this_char,"conv") && value) {
value93fs/msdos/inode.cif (value[0] && !value[1] && strchr("bta",*value))
value94fs/msdos/inode.c*conversion = *value;
value95fs/msdos/inode.celse if (!strcmp(value,"binary")) *conversion = 'b';
value96fs/msdos/inode.celse if (!strcmp(value,"text")) *conversion = 't';
value97fs/msdos/inode.celse if (!strcmp(value,"auto")) *conversion = 'a';
value101fs/msdos/inode.cif (!value || !*value)
value103fs/msdos/inode.c*uid = simple_strtoul(value,&value,0);
value104fs/msdos/inode.cif (*value)
value108fs/msdos/inode.cif (!value || !*value)
value110fs/msdos/inode.c*gid = simple_strtoul(value,&value,0);
value111fs/msdos/inode.cif (*value)
value115fs/msdos/inode.cif (!value || !*value)
value117fs/msdos/inode.c*umask = simple_strtoul(value,&value,8);
value118fs/msdos/inode.cif (*value)
value122fs/msdos/inode.cif (value) return 0;
value126fs/msdos/inode.cif (!value || !*value)
value128fs/msdos/inode.c*fat = simple_strtoul(value,&value,0);
value129fs/msdos/inode.cif (*value || (*fat != 12 && *fat != 16))
value133fs/msdos/inode.cif (value) return 0;
value45include/asm/io.hextern inline void __out##s(unsigned x value, unsigned short port) {
value51include/asm/io.h__OUT1(s,x) __OUT2(s,s1,"w") : : "a" (value), "d" (port)); } \
value52include/asm/io.h__OUT1(s##c,x) __OUT2(s,s1,"") : : "a" (value), "i" (port)); } \
value53include/asm/io.h__OUT1(s##_p,x) __OUT2(s,s1,"w") : : "a" (value), "d" (port)); SLOW_DOWN_IO; } \
value54include/asm/io.h__OUT1(s##c_p,x) __OUT2(s,s1,"") : : "a" (value), "i" (port)); SLOW_DOWN_IO; }
value22include/linux/module.hunsigned long value;    /* value of symbol */
value885include/linux/soundcard.h#define SEQ_CONTROL(dev, chn, controller, value) \
value886include/linux/soundcard.h_CHN_COMMON(dev, MIDI_CTL_CHANGE, chn, controller, 0, value)
value888include/linux/soundcard.h#define SEQ_BENDER(dev, chn, value) \
value889include/linux/soundcard.h_CHN_COMMON(dev, MIDI_PITCH_BEND, chn, 0, 0, value)
value895include/linux/soundcard.h#define SEQ_PITCHBEND(dev, voice, value) SEQ_CONTROL(dev, voice, CTRL_PITCH_BENDER, value)
value896include/linux/soundcard.h#define SEQ_BENDER_RANGE(dev, voice, value) SEQ_CONTROL(dev, voice, CTRL_PITCH_BENDER_RANGE, value)
value897include/linux/soundcard.h#define SEQ_EXPRESSION(dev, voice, value) SEQ_CONTROL(dev, voice, CTL_EXPRESSION, value*128)
value898include/linux/soundcard.h#define SEQ_MAIN_VOLUME(dev, voice, value) SEQ_CONTROL(dev, voice, CTL_MAIN_VOLUME, (value*16383)/100)
value931include/linux/soundcard.h#define SEQ_SET_TEMPO(value)    _TIMER_EVENT(TMR_TEMPO, value)
value17kernel/itimer.cstatic unsigned long tvtojiffies(struct timeval *value)
value19kernel/itimer.creturn((unsigned long )value->tv_sec * HZ +
value20kernel/itimer.c(unsigned long )(value->tv_usec + (1000000 / HZ - 1)) /
value24kernel/itimer.cstatic void jiffiestotv(unsigned long jiffies, struct timeval *value)
value26kernel/itimer.cvalue->tv_usec = (jiffies % HZ) * (1000000 / HZ);
value27kernel/itimer.cvalue->tv_sec = jiffies / HZ;
value31kernel/itimer.cint _getitimer(int which, struct itimerval *value)
value51kernel/itimer.cjiffiestotv(val, &value->it_value);
value52kernel/itimer.cjiffiestotv(interval, &value->it_interval);
value56kernel/itimer.casmlinkage int sys_getitimer(int which, struct itimerval *value)
value61kernel/itimer.cif (!value)
value66kernel/itimer.cerror = verify_area(VERIFY_WRITE, value, sizeof(struct itimerval));
value69kernel/itimer.cmemcpy_tofs(value, &get_buffer, sizeof(get_buffer));
value73kernel/itimer.cint _setitimer(int which, struct itimerval *value, struct itimerval *ovalue)
value78kernel/itimer.ci = tvtojiffies(&value->it_interval);
value79kernel/itimer.cj = tvtojiffies(&value->it_value);
value110kernel/itimer.casmlinkage int sys_setitimer(int which, struct itimerval *value, struct itimerval *ovalue)
value115kernel/itimer.cif (!value)
value118kernel/itimer.cmemcpy_fromfs(&set_buffer, value, sizeof(set_buffer));
value331kernel/module.cisym.value = (unsigned long)mp;
value340kernel/module.cisym.value = (unsigned long)from->addr;
value19kernel/vsprintf.cunsigned long result = 0,value;
value32kernel/vsprintf.cwhile (isxdigit(*cp) && (value = isdigit(*cp) ? *cp-'0' : (islower(*cp)
value34kernel/vsprintf.cresult = result*base + value;
value37mm/vmalloc.cstatic inline void set_pgdir(unsigned long dindex, unsigned long value)
value43mm/vmalloc.c((unsigned long *) p->tss.cr3)[dindex] = value;
value261zBoot/gzip.hvoid     send_bits  OF((int value, int length));
value262zBoot/gzip.hunsigned bi_reverse OF((unsigned value, int length));