tag | line | file | source code |
c | 92 | drivers/FPU-emu/fpu_etc.c | int c=0; |
c | 96 | drivers/FPU-emu/fpu_etc.c | c = SW_C3|SW_C0; |
c | 99 | drivers/FPU-emu/fpu_etc.c | c = SW_C3; |
c | 104 | drivers/FPU-emu/fpu_etc.c | c = SW_C2|SW_C3; /* Denormal */ |
c | 106 | drivers/FPU-emu/fpu_etc.c | c = SW_C2; |
c | 109 | drivers/FPU-emu/fpu_etc.c | c = SW_C0; |
c | 112 | drivers/FPU-emu/fpu_etc.c | c = SW_C2|SW_C0; |
c | 116 | drivers/FPU-emu/fpu_etc.c | c |= SW_C1; |
c | 117 | drivers/FPU-emu/fpu_etc.c | setcc(c); |
c | 173 | drivers/FPU-emu/reg_compare.c | int f, c; |
c | 175 | drivers/FPU-emu/reg_compare.c | c = compare(&FPU_loaded_data); |
c | 177 | drivers/FPU-emu/reg_compare.c | if (c & COMP_NaN) |
c | 183 | drivers/FPU-emu/reg_compare.c | switch (c & 7) |
c | 205 | drivers/FPU-emu/reg_compare.c | if (c & COMP_Denormal) |
c | 215 | drivers/FPU-emu/reg_compare.c | int f, c; |
c | 225 | drivers/FPU-emu/reg_compare.c | c = compare(&st(nr)); |
c | 226 | drivers/FPU-emu/reg_compare.c | if (c & COMP_NaN) |
c | 233 | drivers/FPU-emu/reg_compare.c | switch (c & 7) |
c | 255 | drivers/FPU-emu/reg_compare.c | if (c & COMP_Denormal) |
c | 265 | drivers/FPU-emu/reg_compare.c | int f, c; |
c | 275 | drivers/FPU-emu/reg_compare.c | c = compare(&st(nr)); |
c | 276 | drivers/FPU-emu/reg_compare.c | if (c & COMP_NaN) |
c | 279 | drivers/FPU-emu/reg_compare.c | if (c & COMP_SNaN) /* This is the only difference between |
c | 288 | drivers/FPU-emu/reg_compare.c | switch (c & 7) |
c | 310 | drivers/FPU-emu/reg_compare.c | if (c & COMP_Denormal) |
c | 59 | drivers/FPU-emu/reg_constant.c | static void fld_const(FPU_REG const *c) |
c | 69 | drivers/FPU-emu/reg_constant.c | reg_move(c, FPU_st0_ptr); |
c | 193 | drivers/FPU-emu/reg_ld_str.c | int c = FPU_loaded_data.sign; |
c | 195 | drivers/FPU-emu/reg_ld_str.c | FPU_loaded_data.sign = c; |
c | 241 | drivers/FPU-emu/reg_ld_str.c | int c = FPU_loaded_data.sign; |
c | 243 | drivers/FPU-emu/reg_ld_str.c | FPU_loaded_data.sign = c; |
c | 220 | drivers/block/hd.c | unsigned char c; |
c | 223 | drivers/block/hd.c | c = inb_p(HD_STATUS); |
c | 224 | drivers/block/hd.c | c &= (BUSY_STAT | READY_STAT | SEEK_STAT); |
c | 225 | drivers/block/hd.c | if (c == (READY_STAT | SEEK_STAT)) |
c | 228 | drivers/block/hd.c | printk("HD controller times out, status = 0x%02x\n",c); |
c | 464 | drivers/block/mcd.c | int a, b, c, d; |
c | 468 | drivers/block/mcd.c | getValue(&c); |
c | 470 | drivers/block/mcd.c | printk("%02X %02X %02X %02X\n", a, b, c, d); |
c | 156 | drivers/char/atixlmouse.c | unsigned char a,b,c; |
c | 160 | drivers/char/atixlmouse.c | c = inb( ATIXL_MSE_SIGNATURE_PORT ); |
c | 161 | drivers/char/atixlmouse.c | if (( a != b ) && ( a == c )) |
c | 962 | drivers/char/console.c | int c; |
c | 978 | drivers/char/console.c | while (!tty->stopped && (c = get_tty_queue(&tty->write_q)) >= 0) { |
c | 979 | drivers/char/console.c | if (state == ESnormal && translate[c]) { |
c | 986 | drivers/char/console.c | c = translate[c]; |
c | 987 | drivers/char/console.c | *(unsigned short *) pos = (attr << 8) + c; |
c | 1001 | drivers/char/console.c | switch (c) { |
c | 1048 | drivers/char/console.c | switch (c) { |
c | 1099 | drivers/char/console.c | if (c == '[') { /* Function key */ |
c | 1103 | drivers/char/console.c | ques = (c=='?'); |
c | 1107 | drivers/char/console.c | if (c==';' && npar<NPAR-1) { |
c | 1110 | drivers/char/console.c | } else if (c>='0' && c<='9') { |
c | 1112 | drivers/char/console.c | par[npar] += c-'0'; |
c | 1117 | drivers/char/console.c | switch(c) { |
c | 1136 | drivers/char/console.c | switch(c) { |
c | 1239 | drivers/char/console.c | if (c == '8') { |
c | 1249 | drivers/char/console.c | if (c == '0') |
c | 1251 | drivers/char/console.c | else if (c == 'B') |
c | 1253 | drivers/char/console.c | else if (c == 'U') |
c | 1260 | drivers/char/console.c | if (c == '0') |
c | 1262 | drivers/char/console.c | else if (c == 'B') |
c | 1264 | drivers/char/console.c | else if (c == 'U') |
c | 1294 | drivers/char/console.c | void * memsetw(void * s,unsigned short c,int count) |
c | 1300 | drivers/char/console.c | :"a" (c),"D" (s),"c" (count) |
c | 1308 | drivers/char/console.c | unsigned char c; |
c | 1312 | drivers/char/console.c | while ((c = *(b++)) != 0) { |
c | 1313 | drivers/char/console.c | if (c == 10 || c == 13 || need_wrap) { |
c | 1314 | drivers/char/console.c | if (c != 13) |
c | 1317 | drivers/char/console.c | if (c == 10 || c == 13) |
c | 1320 | drivers/char/console.c | *(unsigned short *) pos = (attr << 8) + c; |
c | 1579 | drivers/char/console.c | static inline int inword(const char c) { return (isalnum(c) || c == '_'); } |
c | 134 | drivers/char/keyboard.c | static inline void send_cmd(unsigned char c) |
c | 137 | drivers/char/keyboard.c | outb(c,0x64); |
c | 196 | drivers/char/lp.c | char c, *temp = buf; |
c | 208 | drivers/char/lp.c | c = get_fs_byte(temp); |
c | 209 | drivers/char/lp.c | retval = lp_char_polled(c, minor); |
c | 380 | drivers/char/psaux.c | unsigned char c; |
c | 396 | drivers/char/psaux.c | c = get_from_queue(); |
c | 397 | drivers/char/psaux.c | put_fs_byte(c, buffer++); |
c | 52 | drivers/char/pty.c | int c; |
c | 61 | drivers/char/pty.c | c = get_tty_queue(&from->write_q); |
c | 62 | drivers/char/pty.c | put_tty_queue(c, &to->read_q); |
c | 2330 | drivers/char/tpqic02.c | int c; |
c | 2353 | drivers/char/tpqic02.c | c = iocmd & IOCCMD_MASK; |
c | 2354 | drivers/char/tpqic02.c | if (c == (MTIOCTOP & IOCCMD_MASK)) { |
c | 2408 | drivers/char/tpqic02.c | } else if (c == (MTIOCGET & IOCCMD_MASK)) { |
c | 2436 | drivers/char/tpqic02.c | } else if (c == (MTIOCPOS & IOCCMD_MASK)) { |
c | 2455 | drivers/char/tpqic02.c | c = rdstatus((char *) blk_addr, sizeof(blk_addr), QCMDV_TELL_BLK); |
c | 2456 | drivers/char/tpqic02.c | if (c!=TE_OK) |
c | 99 | drivers/char/tty_io.c | void put_tty_queue(char c, struct tty_queue * queue) |
c | 108 | drivers/char/tty_io.c | queue->buf[queue->head] = c; |
c | 481 | drivers/char/tty_io.c | int c, special_flag; |
c | 498 | drivers/char/tty_io.c | c = LEFT(&tty->secondary); |
c | 499 | drivers/char/tty_io.c | if (tty->throttle && (c < SQ_THRESHOLD_LW) |
c | 502 | drivers/char/tty_io.c | if (c == 0) |
c | 506 | drivers/char/tty_io.c | c = 0xff & tty->read_q.buf[tty->read_q.tail]; |
c | 517 | drivers/char/tty_io.c | tty->char_error = c & 3; |
c | 540 | drivers/char/tty_io.c | put_tty_queue(c, &tty->secondary); |
c | 546 | drivers/char/tty_io.c | c &= 0x7f; |
c | 547 | drivers/char/tty_io.c | else if (I_PARMRK(tty) && (c == '\377')) |
c | 549 | drivers/char/tty_io.c | if (c==13) { |
c | 551 | drivers/char/tty_io.c | c=10; |
c | 554 | drivers/char/tty_io.c | } else if (c==10 && I_NLCR(tty)) |
c | 555 | drivers/char/tty_io.c | c=13; |
c | 557 | drivers/char/tty_io.c | c=tolower(c); |
c | 558 | drivers/char/tty_io.c | if (c == __DISABLED_CHAR) |
c | 561 | drivers/char/tty_io.c | if (c == KILL_CHAR(tty) || c == WERASE_CHAR(tty)) { |
c | 563 | drivers/char/tty_io.c | (c == WERASE_CHAR(tty)) ? 0 : -1; |
c | 567 | drivers/char/tty_io.c | (c=LAST(&tty->secondary))==10 || |
c | 569 | drivers/char/tty_io.c | (c==EOF_CHAR(tty))))) { |
c | 574 | drivers/char/tty_io.c | if (isalnum(c)) |
c | 580 | drivers/char/tty_io.c | if (c<32) { |
c | 593 | drivers/char/tty_io.c | if (c == ERASE_CHAR(tty)) { |
c | 595 | drivers/char/tty_io.c | (c=LAST(&tty->secondary))==10 || |
c | 597 | drivers/char/tty_io.c | (c==EOF_CHAR(tty)))) |
c | 600 | drivers/char/tty_io.c | if (c<32) { |
c | 612 | drivers/char/tty_io.c | if (c == LNEXT_CHAR(tty)) { |
c | 622 | drivers/char/tty_io.c | if (c == STOP_CHAR(tty)) { |
c | 637 | drivers/char/tty_io.c | (c == START_CHAR(tty))) { |
c | 653 | drivers/char/tty_io.c | if (c == INTR_CHAR(tty)) { |
c | 661 | drivers/char/tty_io.c | if (c == QUIT_CHAR(tty)) { |
c | 669 | drivers/char/tty_io.c | if (c == SUSPEND_CHAR(tty)) { |
c | 680 | drivers/char/tty_io.c | if (c==10 || (EOF_CHAR(tty) != __DISABLED_CHAR && |
c | 681 | drivers/char/tty_io.c | c==EOF_CHAR(tty))) |
c | 683 | drivers/char/tty_io.c | if ((c==10) && (L_ECHO(tty) || (L_CANON(tty) && L_ECHONL(tty)))) { |
c | 687 | drivers/char/tty_io.c | if (c<32 && L_ECHOCTL(tty)) { |
c | 689 | drivers/char/tty_io.c | put_tty_queue(c+'A'-1, &tty->write_q); |
c | 691 | drivers/char/tty_io.c | c==EOF_CHAR(tty) && !tty->lnext) { |
c | 696 | drivers/char/tty_io.c | put_tty_queue(c, &tty->write_q); |
c | 699 | drivers/char/tty_io.c | put_tty_queue(c, &tty->secondary); |
c | 735 | drivers/char/tty_io.c | int c; |
c | 792 | drivers/char/tty_io.c | while (nr > 0 && ((c = get_tty_queue(&tty->secondary)) >= 0)) { |
c | 794 | drivers/char/tty_io.c | c==EOF_CHAR(tty)) || c==10) |
c | 797 | drivers/char/tty_io.c | c==EOF_CHAR(tty)) && L_CANON(tty)) |
c | 799 | drivers/char/tty_io.c | put_fs_byte(c,b++); |
c | 803 | drivers/char/tty_io.c | if (c==10 && L_CANON(tty)) |
c | 902 | drivers/char/tty_io.c | char c, *b=buf; |
c | 928 | drivers/char/tty_io.c | c=get_fs_byte(b); |
c | 930 | drivers/char/tty_io.c | switch (c) { |
c | 937 | drivers/char/tty_io.c | c = '\r'; |
c | 951 | drivers/char/tty_io.c | c = '\n'; |
c | 960 | drivers/char/tty_io.c | c = ' '; |
c | 972 | drivers/char/tty_io.c | c = toupper(c); |
c | 978 | drivers/char/tty_io.c | put_tty_queue(c,&tty->write_q); |
c | 115 | drivers/char/tty_ioctl.c | char *c, *d; |
c | 124 | drivers/char/tty_ioctl.c | c = (char *)(*p); |
c | 127 | drivers/char/tty_ioctl.c | put_fs_byte(*c++, d++); |
c | 349 | drivers/char/tty_ioctl.c | char c, * tmp; |
c | 356 | drivers/char/tty_ioctl.c | c = get_fs_byte(i + (char *) ws); |
c | 357 | drivers/char/tty_ioctl.c | if (c == *tmp) |
c | 360 | drivers/char/tty_ioctl.c | *tmp = c; |
c | 286 | drivers/net/slip.c | sl_enqueue(struct slip *sl, unsigned char c) |
c | 293 | drivers/net/slip.c | *sl->rhead = c; |
c | 349 | drivers/net/slip.c | unsigned char c; |
c | 355 | drivers/net/slip.c | if ((c = sl->rbuff[0]) & SL_TYPE_COMPRESSED_TCP) { |
c | 376 | drivers/net/slip.c | } else if (c >= SL_TYPE_UNCOMPRESSED_TCP) { |
c | 451 | drivers/net/slip.c | c = *p++; |
c | 452 | drivers/net/slip.c | switch(c) { |
c | 464 | drivers/net/slip.c | *bp++ = c; |
c | 783 | drivers/net/slip.c | c = *p++; |
c | 785 | drivers/net/slip.c | if (c == ESC_ESC) |
c | 787 | drivers/net/slip.c | else if (c == ESC_END) |
c | 793 | drivers/net/slip.c | if (c == ESC) |
c | 795 | drivers/net/slip.c | else if (c == END) { |
c | 799 | drivers/net/slip.c | } else sl_enqueue(sl, c); |
c | 988 | drivers/net/slip.c | unsigned char c; |
c | 991 | drivers/net/slip.c | c = 0x30 + ((v >> bits) & 0x3F); |
c | 992 | drivers/net/slip.c | d[count++] = c; |
c | 996 | drivers/net/slip.c | unsigned char c; |
c | 998 | drivers/net/slip.c | c = 0x30 + ((v << (6 - bits)) & 0x3F); |
c | 999 | drivers/net/slip.c | d[count++] = c; |
c | 1009 | drivers/net/slip.c | unsigned char c; |
c | 1033 | drivers/net/slip.c | c = (unsigned char)(sl->xdata >> sl->xbits); |
c | 1034 | drivers/net/slip.c | sl_enqueue(sl, c); |
c | 1253 | drivers/scsi/NCR5380.c | register int c = *count; |
c | 1301 | drivers/scsi/NCR5380.c | if (!((p & SR_MSG) && c > 1)) { |
c | 1331 | drivers/scsi/NCR5380.c | if (!(p == PHASE_MSGOUT && c > 1)) |
c | 1335 | drivers/scsi/NCR5380.c | } while (--c); |
c | 1338 | drivers/scsi/NCR5380.c | printk("scsi%d : residual %d\n", instance->host_no, c); |
c | 1341 | drivers/scsi/NCR5380.c | *count = c; |
c | 1349 | drivers/scsi/NCR5380.c | if (!c || (*phase == p)) |
c | 1379 | drivers/scsi/NCR5380.c | register int c = *count; |
c | 1387 | drivers/scsi/NCR5380.c | instance->dmalen = c; |
c | 1389 | drivers/scsi/NCR5380.c | NCR5380_dma_read_setup(d, c); |
c | 1391 | drivers/scsi/NCR5380.c | NCR5380_dma_write_setup(d, c); |
c | 1427 | drivers/scsi/NCR5380.c | foo = ((p & SR_IO) ? NCR5380_pread(instance, d, c) : |
c | 1428 | drivers/scsi/NCR5380.c | NCR5380_pwrite(instance, d, c)); |
c | 1431 | drivers/scsi/NCR5380.c | *data = d + c; |
c | 127 | drivers/sound/audio.c | int c, p, l; |
c | 134 | drivers/sound/audio.c | c = count; |
c | 154 | drivers/sound/audio.c | while (c) |
c | 163 | drivers/sound/audio.c | l = c; |
c | 187 | drivers/sound/audio.c | c -= l; |
c | 207 | drivers/sound/audio.c | int c, p, l; |
c | 214 | drivers/sound/audio.c | c = count; |
c | 228 | drivers/sound/audio.c | while (c) |
c | 233 | drivers/sound/audio.c | if (l > c) |
c | 234 | drivers/sound/audio.c | l = c; |
c | 253 | drivers/sound/audio.c | c -= l; |
c | 256 | drivers/sound/audio.c | return count - c; |
c | 380 | drivers/sound/dmabuf.c | DMAbuf_rmchars (int dev, int buff_no, int c) |
c | 382 | drivers/sound/dmabuf.c | int p = dev_counts[dev][dev_qhead[dev]] + c; |
c | 400 | drivers/sound/dmabuf.c | int buff_no, c, err; |
c | 407 | drivers/sound/dmabuf.c | if ((buff_no = DMAbuf_getrdbuffer (dev, &dmabuf, &c)) < 0) |
c | 410 | drivers/sound/dmabuf.c | if (c > count) |
c | 411 | drivers/sound/dmabuf.c | c = count; |
c | 413 | drivers/sound/dmabuf.c | COPY_TO_USER (user_buf, 0, dmabuf, c); |
c | 415 | drivers/sound/dmabuf.c | if ((err = DMAbuf_rmchars (dev, buff_no, c)) < 0) |
c | 417 | drivers/sound/dmabuf.c | return c; |
c | 826 | drivers/sound/dmabuf.c | DMAbuf_rmchars (int dev, int buff_no, int c) |
c | 74 | drivers/sound/mpu401.c | unsigned char c = mpu401_read (); |
c | 79 | drivers/sound/mpu401.c | midi_input_intr (my_dev, c); |
c | 54 | drivers/sound/os.h | #define COPY_FROM_USER(d, s, o, c) memcpy_fromfs((d), &((s)[o]), (c)) |
c | 55 | drivers/sound/os.h | #define COPY_TO_USER(d, o, s, c) memcpy_tofs(&((d)[o]), (s), (c)) |
c | 56 | drivers/sound/os.h | #define IOCTL_FROM_USER(d, s, o, c) memcpy_fromfs((d), &((s)[o]), (c)) |
c | 57 | drivers/sound/os.h | #define IOCTL_TO_USER(d, o, s, c) memcpy_tofs(&((d)[o]), (s), (c)) |
c | 77 | drivers/sound/sequencer.c | int c = count, p = 0; |
c | 84 | drivers/sound/sequencer.c | while (c > 3) |
c | 91 | drivers/sound/sequencer.c | return count - c; |
c | 96 | drivers/sound/sequencer.c | c -= 4; |
c | 102 | drivers/sound/sequencer.c | return count - c; |
c | 157 | drivers/sound/sequencer.c | int p = 0, c, ev_size; |
c | 171 | drivers/sound/sequencer.c | c = count; |
c | 173 | drivers/sound/sequencer.c | while (c >= 4) |
c | 189 | drivers/sound/sequencer.c | err = synth_devs[dev]->load_patch (dev, *(short *) &event[0], buf, p + 4, c, 0); |
c | 201 | drivers/sound/sequencer.c | if (c < ev_size) |
c | 205 | drivers/sound/sequencer.c | return count - c; |
c | 248 | drivers/sound/sequencer.c | return count - c; |
c | 252 | drivers/sound/sequencer.c | c -= ev_size; |
c | 10 | drivers/sound/sound_calls.h | int DMAbuf_rmchars(int dev, int buff_no, int c); |
c | 182 | drivers/sound/soundcard.c | int l, c; |
c | 185 | drivers/sound/soundcard.c | c = status_len - status_ptr; |
c | 187 | drivers/sound/soundcard.c | if (l > c) |
c | 188 | drivers/sound/soundcard.c | l = c; |
c | 68 | fs/ext/dir.c | char c; |
c | 100 | fs/ext/dir.c | if ((c = de->name[i]) != 0) |
c | 101 | fs/ext/dir.c | put_fs_byte(c,i+dirent->d_name); |
c | 199 | fs/ext/file.c | int written,c; |
c | 227 | fs/ext/file.c | c = BLOCK_SIZE - (pos % BLOCK_SIZE); |
c | 228 | fs/ext/file.c | if (c > count-written) |
c | 229 | fs/ext/file.c | c = count-written; |
c | 230 | fs/ext/file.c | if (c != BLOCK_SIZE && !bh->b_uptodate) { |
c | 241 | fs/ext/file.c | pos += c; |
c | 246 | fs/ext/file.c | written += c; |
c | 247 | fs/ext/file.c | memcpy_fromfs(p,buf,c); |
c | 248 | fs/ext/file.c | buf += c; |
c | 633 | fs/ext/namei.c | char c; |
c | 650 | fs/ext/namei.c | while (i < 1023 && (c = *(symname++))) |
c | 651 | fs/ext/namei.c | name_block->b_data[i++] = c; |
c | 89 | fs/ext/symlink.c | char c; |
c | 102 | fs/ext/symlink.c | while (i<buflen && (c = bh->b_data[i])) { |
c | 104 | fs/ext/symlink.c | put_fs_byte(c,buffer++); |
c | 209 | fs/ext2/file.c | int written, c; |
c | 241 | fs/ext2/file.c | c = sb->s_blocksize - (pos % sb->s_blocksize); |
c | 242 | fs/ext2/file.c | if (c > count-written) |
c | 243 | fs/ext2/file.c | c = count - written; |
c | 244 | fs/ext2/file.c | if (c != sb->s_blocksize && !bh->b_uptodate) { |
c | 255 | fs/ext2/file.c | pos += c; |
c | 260 | fs/ext2/file.c | written += c; |
c | 261 | fs/ext2/file.c | memcpy_fromfs (p, buf, c); |
c | 262 | fs/ext2/file.c | buf += c; |
c | 719 | fs/ext2/namei.c | char c; |
c | 750 | fs/ext2/namei.c | while (i < inode->i_sb->s_blocksize - 1 && (c = *(symname++))) |
c | 751 | fs/ext2/namei.c | link[i++] = c; |
c | 97 | fs/ext2/symlink.c | char c; |
c | 116 | fs/ext2/symlink.c | while (i < buflen && (c = link[i])) { |
c | 118 | fs/ext2/symlink.c | put_fs_byte (c, buffer++); |
c | 946 | fs/hpfs/hpfs_fs.c | unsigned c; |
c | 951 | fs/hpfs/hpfs_fs.c | c = *p++; |
c | 952 | fs/hpfs/hpfs_fs.c | if (c < ' ') |
c | 953 | fs/hpfs/hpfs_fs.c | if (c == '\r' && len && *p == '\n') |
c | 955 | fs/hpfs/hpfs_fs.c | else if (c == '\t' || c == '\n'); |
c | 958 | fs/hpfs/hpfs_fs.c | else if (c < '\177') |
c | 980 | fs/hpfs/hpfs_fs.c | unsigned c = *in++; |
c | 981 | fs/hpfs/hpfs_fs.c | if (c == '\r' && (len == 0 || *in == '\n')); |
c | 983 | fs/hpfs/hpfs_fs.c | put_fs_byte(c, out++); |
c | 70 | fs/isofs/dir.c | char c = 0; |
c | 192 | fs/isofs/dir.c | if (!(c = dpnt[i])) break; |
c | 193 | fs/isofs/dir.c | if (c >= 'A' && c <= 'Z') c |= 0x20; /* lower case */ |
c | 194 | fs/isofs/dir.c | if (c == ';' && i == dlen-2 && de->name[i+1] == '1') |
c | 196 | fs/isofs/dir.c | if (c == ';') c = '.'; /* Convert remaining ';' to '.' */ |
c | 197 | fs/isofs/dir.c | dpnt[i] = c; |
c | 78 | fs/isofs/namei.c | char c; |
c | 164 | fs/isofs/namei.c | c = dpnt[i]; |
c | 165 | fs/isofs/namei.c | if (c >= 'A' && c <= 'Z') c |= 0x20; /* lower case */ |
c | 166 | fs/isofs/namei.c | if (c == ';' && i == dlen-2 && dpnt[i+1] == '1') { |
c | 170 | fs/isofs/namei.c | if (c == ';') c = '.'; |
c | 171 | fs/isofs/namei.c | de->name[i] = c; |
c | 84 | fs/isofs/symlink.c | char c; |
c | 100 | fs/isofs/symlink.c | while (i<buflen && (c = pnt[i])) { |
c | 102 | fs/isofs/symlink.c | put_fs_byte(c,buffer++); |
c | 61 | fs/minix/dir.c | char c; |
c | 84 | fs/minix/dir.c | if ((c = de->name[i]) != 0) |
c | 85 | fs/minix/dir.c | put_fs_byte(c,i+dirent->d_name); |
c | 191 | fs/minix/file.c | int written,c; |
c | 219 | fs/minix/file.c | c = BLOCK_SIZE - (pos % BLOCK_SIZE); |
c | 220 | fs/minix/file.c | if (c > count-written) |
c | 221 | fs/minix/file.c | c = count-written; |
c | 222 | fs/minix/file.c | if (c != BLOCK_SIZE && !bh->b_uptodate) { |
c | 233 | fs/minix/file.c | pos += c; |
c | 238 | fs/minix/file.c | written += c; |
c | 239 | fs/minix/file.c | memcpy_fromfs(p,buf,c); |
c | 240 | fs/minix/file.c | buf += c; |
c | 545 | fs/minix/namei.c | char c; |
c | 562 | fs/minix/namei.c | while (i < 1023 && (c=*(symname++))) |
c | 563 | fs/minix/namei.c | name_block->b_data[i++] = c; |
c | 83 | fs/minix/symlink.c | char c; |
c | 96 | fs/minix/symlink.c | while (i<buflen && (c = bh->b_data[i])) { |
c | 98 | fs/minix/symlink.c | put_fs_byte(c,buffer++); |
c | 61 | fs/msdos/dir.c | char c,*walk; |
c | 84 | fs/msdos/dir.c | if (!(c = de->name[i])) break; |
c | 85 | fs/msdos/dir.c | if (c >= 'A' && c <= 'Z') c += 32; |
c | 86 | fs/msdos/dir.c | if (c != ' ') last = i+1; |
c | 87 | fs/msdos/dir.c | put_fs_byte(c,i+dirent->d_name); |
c | 93 | fs/msdos/dir.c | if (!(c = de->ext[i2])) break; |
c | 94 | fs/msdos/dir.c | if (c >= 'A' && c <= 'Z') c += 32; |
c | 95 | fs/msdos/dir.c | if (c != ' ') last = i+1; |
c | 96 | fs/msdos/dir.c | put_fs_byte(c,i+dirent->d_name); |
c | 37 | fs/msdos/namei.c | unsigned char c; |
c | 48 | fs/msdos/namei.c | c = 0; |
c | 50 | fs/msdos/namei.c | c = *name++; |
c | 52 | fs/msdos/namei.c | if (conv != 'r' && strchr(bad_chars,c)) return -EINVAL; |
c | 53 | fs/msdos/namei.c | if (conv == 's' && strchr(bad_if_strict,c)) return -EINVAL; |
c | 54 | fs/msdos/namei.c | if (c >= 'A' && c <= 'Z' && conv == 's') return -EINVAL; |
c | 55 | fs/msdos/namei.c | if (c < ' ' || c == ':' || c == '\\') return -EINVAL; |
c | 56 | fs/msdos/namei.c | if (c == '.') break; |
c | 57 | fs/msdos/namei.c | space = c == ' '; |
c | 58 | fs/msdos/namei.c | *walk = c >= 'a' && c <= 'z' ? c-32 : c; |
c | 61 | fs/msdos/namei.c | if (conv == 's' && len && c != '.') { |
c | 62 | fs/msdos/namei.c | c = *name++; |
c | 64 | fs/msdos/namei.c | if (c != '.') return -EINVAL; |
c | 66 | fs/msdos/namei.c | while (c != '.' && len--) c = *name++; |
c | 67 | fs/msdos/namei.c | if (c == '.') { |
c | 70 | fs/msdos/namei.c | c = *name++; |
c | 72 | fs/msdos/namei.c | if (conv != 'r' && strchr(bad_chars,c)) return -EINVAL; |
c | 73 | fs/msdos/namei.c | if (conv == 's' && strchr(bad_if_strict,c)) |
c | 75 | fs/msdos/namei.c | if (c < ' ' || c == ':' || c == '\\' || c == '.') |
c | 77 | fs/msdos/namei.c | if (c >= 'A' && c <= 'Z' && conv == 's') return -EINVAL; |
c | 78 | fs/msdos/namei.c | space = c == ' '; |
c | 79 | fs/msdos/namei.c | *walk++ = c >= 'a' && c <= 'z' ? c-32 : c; |
c | 33 | fs/namei.c | char * tmp, c; |
c | 44 | fs/namei.c | c = get_fs_byte(filename++); |
c | 45 | fs/namei.c | if (!c) |
c | 51 | fs/namei.c | *(tmp++) = c; |
c | 52 | fs/namei.c | c = get_fs_byte(filename++); |
c | 53 | fs/namei.c | if (!c) { |
c | 159 | fs/namei.c | char c; |
c | 169 | fs/namei.c | if ((c = *pathname) == '/') { |
c | 177 | fs/namei.c | for(len=0;(c = *(pathname++))&&(c != '/');len++) |
c | 179 | fs/namei.c | if (!c) |
c | 87 | fs/nfs/symlink.c | char c; |
c | 104 | fs/nfs/symlink.c | for (i = 0; i < buflen && (c = res[i]); i++) |
c | 105 | fs/nfs/symlink.c | put_fs_byte(c,buffer++); |
c | 77 | fs/proc/array.c | int a, b, c; |
c | 81 | fs/proc/array.c | c = avenrun[2] + (FIXED_1/200); |
c | 85 | fs/proc/array.c | LOAD_INT(c), LOAD_FRAC(c)); |
c | 158 | fs/proc/array.c | char c; |
c | 167 | fs/proc/array.c | c = *(char *) addr; |
c | 168 | fs/proc/array.c | if (!c) |
c | 171 | fs/proc/array.c | buffer[size++] = c; |
c | 56 | fs/proc/fd.c | unsigned int ino, pid, fd, c; |
c | 89 | fs/proc/fd.c | c = *name - '0'; |
c | 91 | fs/proc/fd.c | if (c > 9) { |
c | 96 | fs/proc/fd.c | fd += c; |
c | 76 | fs/proc/root.c | unsigned int pid, c; |
c | 100 | fs/proc/root.c | c = *name - '0'; |
c | 102 | fs/proc/root.c | if (c > 9) { |
c | 107 | fs/proc/root.c | pid += c; |
c | 192 | fs/xiafs/file.c | int written, c; |
c | 220 | fs/xiafs/file.c | c = XIAFS_ZSIZE(inode->i_sb) - (pos & (XIAFS_ZSIZE(inode->i_sb) - 1)); |
c | 221 | fs/xiafs/file.c | if (c > count-written) |
c | 222 | fs/xiafs/file.c | c = count-written; |
c | 223 | fs/xiafs/file.c | if (c != XIAFS_ZSIZE(inode->i_sb) && !bh->b_uptodate) { |
c | 234 | fs/xiafs/file.c | pos += c; |
c | 239 | fs/xiafs/file.c | written += c; |
c | 240 | fs/xiafs/file.c | memcpy_fromfs(cp,buf,c); |
c | 241 | fs/xiafs/file.c | buf += c; |
c | 589 | fs/xiafs/namei.c | char c; |
c | 611 | fs/xiafs/namei.c | for (i = 0; i < BLOCK_SIZE-1 && (c=*symname++); i++) |
c | 612 | fs/xiafs/namei.c | name_block->b_data[i] = c; |
c | 51 | fs/xiafs/symlink.c | char c; |
c | 67 | fs/xiafs/symlink.c | for (i=0; i < buflen && (c=bh->b_data[i]); i++) |
c | 68 | fs/xiafs/symlink.c | put_fs_byte(c, buffer++); |
c | 135 | include/linux/cdu31a.h | #define SONY_HWC_GET_LOAD_MECH(c) (c.hw_config[0] & 0x03) |
c | 136 | include/linux/cdu31a.h | #define SONY_HWC_EJECT(c) (c.hw_config[0] & 0x04) |
c | 137 | include/linux/cdu31a.h | #define SONY_HWC_LED_SUPPORT(c) (c.hw_config[0] & 0x08) |
c | 138 | include/linux/cdu31a.h | #define SONY_HWC_GET_BUF_MEM_SIZE(c) ((c.hw_config[0] & 0xc0) >> 6) |
c | 139 | include/linux/cdu31a.h | #define SONY_HWC_AUDIO_PLAYBACK(c) (c.hw_config[1] & 0x01) |
c | 140 | include/linux/cdu31a.h | #define SONY_HWC_ELECTRIC_VOLUME(c) (c.hw_config[1] & 0x02) |
c | 141 | include/linux/cdu31a.h | #define SONY_HWC_ELECTRIC_VOLUME_CTL(c) (c.hw_config[1] & 0x04) |
c | 16 | include/linux/ctype.h | #define isalnum(c) ((_ctype+1)[c]&(_U|_L|_D)) |
c | 17 | include/linux/ctype.h | #define isalpha(c) ((_ctype+1)[c]&(_U|_L)) |
c | 18 | include/linux/ctype.h | #define iscntrl(c) ((_ctype+1)[c]&(_C)) |
c | 19 | include/linux/ctype.h | #define isdigit(c) ((_ctype+1)[c]&(_D)) |
c | 20 | include/linux/ctype.h | #define isgraph(c) ((_ctype+1)[c]&(_P|_U|_L|_D)) |
c | 21 | include/linux/ctype.h | #define islower(c) ((_ctype+1)[c]&(_L)) |
c | 22 | include/linux/ctype.h | #define isprint(c) ((_ctype+1)[c]&(_P|_U|_L|_D|_SP)) |
c | 23 | include/linux/ctype.h | #define ispunct(c) ((_ctype+1)[c]&(_P)) |
c | 24 | include/linux/ctype.h | #define isspace(c) ((_ctype+1)[c]&(_S)) |
c | 25 | include/linux/ctype.h | #define isupper(c) ((_ctype+1)[c]&(_U)) |
c | 26 | include/linux/ctype.h | #define isxdigit(c) ((_ctype+1)[c]&(_D|_X)) |
c | 28 | include/linux/ctype.h | #define isascii(c) (((unsigned) c)<=0x7f) |
c | 29 | include/linux/ctype.h | #define toascii(c) (((unsigned) c)&0x7f) |
c | 31 | include/linux/ctype.h | #define tolower(c) (_ctmp=c,isupper(_ctmp)?_ctmp-('A'-'a'):_ctmp) |
c | 32 | include/linux/ctype.h | #define toupper(c) (_ctmp=c,islower(_ctmp)?_ctmp-('a'-'A'):_ctmp) |
c | 33 | include/linux/ioctl.h | #define _IO(c,d) (IOC_VOID | ((c)<<8) | (d)) /* param encoded */ |
c | 38 | include/linux/ioctl.h | #define _IOW(c,d,t) (IOC_IN | ((sizeof(t)<<16) & IOCSIZE_MASK) | \ |
c | 39 | include/linux/ioctl.h | ((c)<<8) | (d)) |
c | 40 | include/linux/ioctl.h | #define _IOR(c,d,t) (IOC_OUT | ((sizeof(t)<<16) & IOCSIZE_MASK) | \ |
c | 41 | include/linux/ioctl.h | ((c)<<8) | (d)) |
c | 43 | include/linux/ioctl.h | #define _IOWR(c,d,t) (IOC_INOUT | ((sizeof(t)<<16) & IOCSIZE_MASK) | \ |
c | 44 | include/linux/ioctl.h | ((c)<<8) | (d)) |
c | 127 | include/linux/string.h | extern inline char * strchr(const char * s,char c) |
c | 140 | include/linux/string.h | :"=a" (__res):"S" (s),"0" (c):"si"); |
c | 144 | include/linux/string.h | extern inline char * strrchr(const char * s,char c) |
c | 156 | include/linux/string.h | :"=d" (__res):"0" (0),"S" (s),"a" (c):"ax","si"); |
c | 392 | include/linux/string.h | extern inline void * memchr(const void * cs,char c,size_t count) |
c | 403 | include/linux/string.h | :"=D" (__res):"a" (c),"D" (cs),"c" (count) |
c | 408 | include/linux/string.h | extern inline void * memset(void * s,char c,size_t count) |
c | 414 | include/linux/string.h | :"a" (c),"D" (s),"c" (count) |
c | 144 | include/linux/tty.h | extern void put_tty_queue(char c, struct tty_queue * queue); |
c | 183 | include/linux/unistd.h | #define _syscall3(type,name,atype,a,btype,b,ctype,c) \ |
c | 184 | include/linux/unistd.h | type name(atype a,btype b,ctype c) \ |
c | 189 | include/linux/unistd.h | : "0" (__NR_##name),"b" ((long)(a)),"c" ((long)(b)),"d" ((long)(c))); \ |
c | 196 | include/linux/unistd.h | #define _syscall4(type,name,atype,a,btype,b,ctype,c,dtype,d) \ |
c | 197 | include/linux/unistd.h | type name (atype a, btype b, ctype c, dtype d) \ |
c | 203 | include/linux/unistd.h | "d" ((long)(c)),"S" ((long)(d))); \ |
c | 210 | include/linux/unistd.h | #define _syscall5(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e) \ |
c | 211 | include/linux/unistd.h | type name (atype a,btype b,ctype c,dtype d,etype e) \ |
c | 217 | include/linux/unistd.h | "d" ((long)(c)),"S" ((long)(d)),"D" ((long)(e))); \ |
c | 59 | kernel/printk.c | char c; |
c | 87 | kernel/printk.c | c = *((char *) log_buf+log_start); |
c | 91 | kernel/printk.c | put_fs_byte(c,buf); |
c | 115 | kernel/printk.c | c = *((char *) log_buf+(j++ & (LOG_BUF_LEN-1))); |
c | 116 | kernel/printk.c | put_fs_byte(c, buf++); |
c | 197 | kernel/sched.c | int c; |
c | 254 | kernel/sched.c | c = -1; |
c | 259 | kernel/sched.c | if (p->state == TASK_RUNNING && p->counter > c) |
c | 260 | kernel/sched.c | c = p->counter, next = p; |
c | 263 | kernel/sched.c | if (!c) { |
c | 43 | kernel/vsprintf.c | #define is_digit(c) ((c) >= '0' && (c) <= '9') |
c | 70 | kernel/vsprintf.c | char c,sign,tmp[36]; |
c | 78 | kernel/vsprintf.c | c = (type & ZEROPAD) ? '0' : ' ' ; |
c | 109 | kernel/vsprintf.c | *str++ = c; |
c | 1530 | net/inet/sock.c | void *c = alloc_skb(size, priority); |
c | 1532 | net/inet/sock.c | if (c) sk->rmem_alloc += size; |
c | 1534 | net/inet/sock.c | return(c); |
c | 87 | tools/build.c | int i,c,id, sz; |
c | 166 | tools/build.c | for (i=0 ; (c=read(id,buf,sizeof buf))>0 ; i+=c ) |
c | 167 | tools/build.c | if (write(1,buf,c)!=c) |
c | 169 | tools/build.c | if (c != 0) |
c | 176 | tools/build.c | for (c=0 ; c<sizeof(buf) ; c++) |
c | 177 | tools/build.c | buf[c] = '\0'; |
c | 179 | tools/build.c | c = SETUP_SECTS*512-i; |
c | 180 | tools/build.c | if (c > sizeof(buf)) |
c | 181 | tools/build.c | c = sizeof(buf); |
c | 182 | tools/build.c | if (write(1,buf,c) != c) |
c | 184 | tools/build.c | i += c; |
c | 188 | zBoot/gzip.h | #define put_byte(c) {outbuf[outcnt++]=(uch)(c); if (outcnt==OUTBUFSIZ)\ |
c | 190 | zBoot/gzip.h | #define put_char(c) {window[outcnt++]=(uch)(c); if (outcnt==WSIZE)\ |
c | 213 | zBoot/gzip.h | #define tolow(c) (isupper(c) ? (c)-'A'+'a' : (c)) /* force to lower case */ |
c | 225 | zBoot/gzip.h | # define Tracec(c,x) {if (verbose && (c)) fprintf x ;} |
c | 226 | zBoot/gzip.h | # define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;} |
c | 232 | zBoot/gzip.h | # define Tracec(c,x) |
c | 233 | zBoot/gzip.h | # define Tracecv(c,x) |
c | 114 | zBoot/inflate.c | unsigned c[BMAX+1]; /* bit length count table */ |
c | 136 | zBoot/inflate.c | memzero(c, sizeof(c)); |
c | 139 | zBoot/inflate.c | c[*p++]++; /* assume all entries <= BMAX */ |
c | 141 | zBoot/inflate.c | if (c[0] == n) /* null input--all zero length codes */ |
c | 153 | zBoot/inflate.c | if (c[j]) |
c | 159 | zBoot/inflate.c | if (c[i]) |
c | 170 | zBoot/inflate.c | if ((y -= c[j]) < 0) |
c | 172 | zBoot/inflate.c | if ((y -= c[i]) < 0) |
c | 174 | zBoot/inflate.c | c[i] += y; |
c | 180 | zBoot/inflate.c | p = c + 1; xp = x + 2; |
c | 210 | zBoot/inflate.c | a = c[k]; |
c | 228 | zBoot/inflate.c | xp = c + k; |
c | 116 | zBoot/misc.c | char c; |
c | 121 | zBoot/misc.c | while ( ( c = *s++ ) != '\0' ) { |
c | 122 | zBoot/misc.c | if ( c == '\n' ) { |
c | 129 | zBoot/misc.c | vidmem [ ( x + cols * y ) * 2 ] = c; |
c | 144 | zBoot/misc.c | __ptr_t memset(__ptr_t s, int c, size_t n) |
c | 149 | zBoot/misc.c | for (i=0;i<n;i++) ss[i] = c; |
c | 172 | zBoot/misc.c | register ulg c; /* temporary variable */ |
c | 177 | zBoot/misc.c | c = 0xffffffffL; |
c | 179 | zBoot/misc.c | c = crc; |
c | 181 | zBoot/misc.c | c = crc_32_tab[((int)c ^ (*s++)) & 0xff] ^ (c >> 8); |
c | 184 | zBoot/misc.c | crc = c; |
c | 185 | zBoot/misc.c | return c ^ 0xffffffffL; /* (instead of ~c for 64-bit machines) */ |
c | 254 | zBoot/misc.c | unsigned long c; /* crc shift register */ |
c | 271 | zBoot/misc.c | c = 0; |
c | 274 | zBoot/misc.c | c = c & 1 ? (c >> 1) ^ e : c >> 1; |
c | 276 | zBoot/misc.c | c ^= e; |
c | 278 | zBoot/misc.c | crc_32_tab[i] = c; |
c | 18 | zBoot/piggyback.c | int c, n=0, len=0; |
c | 133 | zBoot/unzip.c | uch c = (uch)get_byte(); |
c | 135 | zBoot/unzip.c | if (decrypt) zdecode(c); |
c | 137 | zBoot/unzip.c | if (!test) put_char(c); |
c | 38 | zBoot/xtract.c | int i,c,id, sz; |