taglinefilesource code
c68fs/ext/dir.cchar c;
c100fs/ext/dir.cif ((c = de->name[i]) != 0)
c101fs/ext/dir.cput_fs_byte(c,i+dirent->d_name);
c199fs/ext/file.cint written,c;
c227fs/ext/file.cc = BLOCK_SIZE - (pos % BLOCK_SIZE);
c228fs/ext/file.cif (c > count-written)
c229fs/ext/file.cc = count-written;
c230fs/ext/file.cif (c != BLOCK_SIZE && !bh->b_uptodate) {
c241fs/ext/file.cpos += c;
c246fs/ext/file.cwritten += c;
c247fs/ext/file.cmemcpy_fromfs(p,buf,c);
c248fs/ext/file.cbuf += c;
c625fs/ext/namei.cchar c;
c642fs/ext/namei.cwhile (i < 1023 && (c = *(symname++)))
c643fs/ext/namei.cname_block->b_data[i++] = c;
c89fs/ext/symlink.cchar c;
c102fs/ext/symlink.cwhile (i<buflen && (c = bh->b_data[i])) {
c104fs/ext/symlink.cput_fs_byte(c,buffer++);
c207fs/ext2/file.cint written, c;
c238fs/ext2/file.cc = sb->s_blocksize - (pos % sb->s_blocksize);
c239fs/ext2/file.cif (c > count-written)
c240fs/ext2/file.cc = count - written;
c241fs/ext2/file.cif (c != sb->s_blocksize && !bh->b_uptodate) {
c252fs/ext2/file.cpos += c;
c257fs/ext2/file.cwritten += c;
c258fs/ext2/file.cmemcpy_fromfs (p, buf, c);
c259fs/ext2/file.cbuf += c;
c671fs/ext2/namei.cchar c;
c702fs/ext2/namei.cwhile (i < inode->i_sb->s_blocksize - 1 && (c = *(symname++)))
c703fs/ext2/namei.clink[i++] = c;
c97fs/ext2/symlink.cchar c;
c116fs/ext2/symlink.cwhile (i < buflen && (c = link[i])) {
c118fs/ext2/symlink.cput_fs_byte (c, buffer++);
c67fs/isofs/dir.cchar c = 0;
c179fs/isofs/dir.cif (!(c = dpnt[i])) break;
c180fs/isofs/dir.cif (c >= 'A' && c <= 'Z') c |= 0x20;  /* lower case */
c181fs/isofs/dir.cif (c == ';' && i == dlen-2 && de->name[i+1] == '1') 
c183fs/isofs/dir.cif (c == ';') c = '.';  /* Convert remaining ';' to '.' */
c184fs/isofs/dir.cdpnt[i] = c;
c75fs/isofs/namei.cchar c;
c155fs/isofs/namei.cc = dpnt[i];
c156fs/isofs/namei.cif (c >= 'A' && c <= 'Z') c |= 0x20;  /* lower case */
c157fs/isofs/namei.cif (c == ';' && i == dlen-2 && dpnt[i+1] == '1') {
c161fs/isofs/namei.cif (c == ';') c = '.';
c162fs/isofs/namei.cde->name[i] = c;
c83fs/isofs/symlink.cchar c;
c99fs/isofs/symlink.cwhile (i<buflen && (c = pnt[i])) {
c101fs/isofs/symlink.cput_fs_byte(c,buffer++);
c61fs/minix/dir.cchar c;
c84fs/minix/dir.cif ((c = de->name[i]) != 0)
c85fs/minix/dir.cput_fs_byte(c,i+dirent->d_name);
c193fs/minix/file.cint written,c;
c221fs/minix/file.cc = BLOCK_SIZE - (pos % BLOCK_SIZE);
c222fs/minix/file.cif (c > count-written)
c223fs/minix/file.cc = count-written;
c224fs/minix/file.cif (c != BLOCK_SIZE && !bh->b_uptodate) {
c235fs/minix/file.cpos += c;
c240fs/minix/file.cwritten += c;
c241fs/minix/file.cmemcpy_fromfs(p,buf,c);
c242fs/minix/file.cbuf += c;
c540fs/minix/namei.cchar c;
c557fs/minix/namei.cwhile (i < 1023 && (c=*(symname++)))
c558fs/minix/namei.cname_block->b_data[i++] = c;
c83fs/minix/symlink.cchar c;
c96fs/minix/symlink.cwhile (i<buflen && (c = bh->b_data[i])) {
c98fs/minix/symlink.cput_fs_byte(c,buffer++);
c61fs/msdos/dir.cchar c,*walk;
c84fs/msdos/dir.cif (!(c = de->name[i])) break;
c85fs/msdos/dir.cif (c >= 'A' && c <= 'Z') c += 32;
c86fs/msdos/dir.cif (c != ' ') last = i+1;
c87fs/msdos/dir.cput_fs_byte(c,i+dirent->d_name);
c93fs/msdos/dir.cif (!(c = de->ext[i2])) break;
c94fs/msdos/dir.cif (c >= 'A' && c <= 'Z') c += 32;
c95fs/msdos/dir.cif (c != ' ') last = i+1;
c96fs/msdos/dir.cput_fs_byte(c,i+dirent->d_name);
c37fs/msdos/namei.cunsigned char c;
c48fs/msdos/namei.cc = 0;
c50fs/msdos/namei.cc = *name++;
c52fs/msdos/namei.cif (conv != 'r' && strchr(bad_chars,c)) return -EINVAL;
c53fs/msdos/namei.cif (conv == 's' && strchr(bad_if_strict,c)) return -EINVAL;
c54fs/msdos/namei.cif (c >= 'A' && c <= 'Z' && conv == 's') return -EINVAL;
c55fs/msdos/namei.cif (c < ' ' || c == ':' || c == '\\') return -EINVAL;
c56fs/msdos/namei.cif (c == '.') break;
c57fs/msdos/namei.cspace = c == ' ';
c58fs/msdos/namei.c*walk = c >= 'a' && c <= 'z' ? c-32 : c;
c61fs/msdos/namei.cif (conv == 's' && len && c != '.') {
c62fs/msdos/namei.cc = *name++;
c64fs/msdos/namei.cif (c != '.') return -EINVAL;
c66fs/msdos/namei.cwhile (c != '.' && len--) c = *name++;
c67fs/msdos/namei.cif (c == '.') {
c70fs/msdos/namei.cc = *name++;
c72fs/msdos/namei.cif (conv != 'r' && strchr(bad_chars,c)) return -EINVAL;
c73fs/msdos/namei.cif (conv == 's' && strchr(bad_if_strict,c))
c75fs/msdos/namei.cif (c < ' ' || c == ':' || c == '\\' || c == '.')
c77fs/msdos/namei.cif (c >= 'A' && c <= 'Z' && conv == 's') return -EINVAL;
c78fs/msdos/namei.cspace = c == ' ';
c79fs/msdos/namei.c*walk++ = c >= 'a' && c <= 'z' ? c-32 : c;
c33fs/namei.cchar * tmp, c;
c44fs/namei.cc = get_fs_byte(filename++);
c45fs/namei.cif (!c)
c51fs/namei.c*(tmp++) = c;
c52fs/namei.cc = get_fs_byte(filename++);
c53fs/namei.cif (!c) {
c162fs/namei.cchar c;
c172fs/namei.cif ((c = *pathname) == '/') {
c180fs/namei.cfor(len=0;(c = *(pathname++))&&(c != '/');len++)
c182fs/namei.cif (!c)
c86fs/nfs/symlink.cchar c;
c103fs/nfs/symlink.cfor (i = 0; i < buflen && (c = res[i]); i++)
c104fs/nfs/symlink.cput_fs_byte(c,buffer++);
c28fs/proc/array.cint a, b, c;
c32fs/proc/array.cc = avenrun[2] + (FIXED_1/200);
c36fs/proc/array.cLOAD_INT(c), LOAD_FRAC(c));
c109fs/proc/array.cchar c;
c118fs/proc/array.cc = *(char *) addr;
c119fs/proc/array.cif (!c)
c122fs/proc/array.cbuffer[size++] = c;
c56fs/proc/fd.cunsigned int ino, pid, fd, c;
c89fs/proc/fd.cc = *name - '0';
c91fs/proc/fd.cif (c > 9) {
c96fs/proc/fd.cfd += c;
c74fs/proc/root.cunsigned int pid, c;
c98fs/proc/root.cc = *name - '0';
c100fs/proc/root.cif (c > 9) {
c105fs/proc/root.cpid += c;
c192fs/xiafs/file.cint written, c;
c220fs/xiafs/file.cc = XIAFS_ZSIZE(inode->i_sb) - (pos & (XIAFS_ZSIZE(inode->i_sb) - 1));
c221fs/xiafs/file.cif (c > count-written)
c222fs/xiafs/file.cc = count-written;
c223fs/xiafs/file.cif (c != XIAFS_ZSIZE(inode->i_sb) && !bh->b_uptodate) {
c234fs/xiafs/file.cpos += c;
c239fs/xiafs/file.cwritten += c;
c240fs/xiafs/file.cmemcpy_fromfs(cp,buf,c);
c241fs/xiafs/file.cbuf += c;
c585fs/xiafs/namei.cchar c;
c607fs/xiafs/namei.cfor (i = 0; i < BLOCK_SIZE-1 && (c=*symname++); i++)
c608fs/xiafs/namei.cname_block->b_data[i] = c;
c51fs/xiafs/symlink.cchar c;
c67fs/xiafs/symlink.cfor (i=0; i < buflen && (c=bh->b_data[i]); i++)
c68fs/xiafs/symlink.cput_fs_byte(c, buffer++);
c135include/linux/cdu31a.h#define SONY_HWC_GET_LOAD_MECH(c)  (c.hw_config[0] & 0x03)
c136include/linux/cdu31a.h#define SONY_HWC_EJECT(c)    (c.hw_config[0] & 0x04)
c137include/linux/cdu31a.h#define SONY_HWC_LED_SUPPORT(c)    (c.hw_config[0] & 0x08)
c138include/linux/cdu31a.h#define SONY_HWC_GET_BUF_MEM_SIZE(c)  ((c.hw_config[0] & 0xc0) >> 6)
c139include/linux/cdu31a.h#define SONY_HWC_AUDIO_PLAYBACK(c)  (c.hw_config[1] & 0x01)
c140include/linux/cdu31a.h#define SONY_HWC_ELECTRIC_VOLUME(c)  (c.hw_config[1] & 0x02)
c141include/linux/cdu31a.h#define SONY_HWC_ELECTRIC_VOLUME_CTL(c)  (c.hw_config[1] & 0x04)
c16include/linux/ctype.h#define isalnum(c) ((_ctype+1)[c]&(_U|_L|_D))
c17include/linux/ctype.h#define isalpha(c) ((_ctype+1)[c]&(_U|_L))
c18include/linux/ctype.h#define iscntrl(c) ((_ctype+1)[c]&(_C))
c19include/linux/ctype.h#define isdigit(c) ((_ctype+1)[c]&(_D))
c20include/linux/ctype.h#define isgraph(c) ((_ctype+1)[c]&(_P|_U|_L|_D))
c21include/linux/ctype.h#define islower(c) ((_ctype+1)[c]&(_L))
c22include/linux/ctype.h#define isprint(c) ((_ctype+1)[c]&(_P|_U|_L|_D|_SP))
c23include/linux/ctype.h#define ispunct(c) ((_ctype+1)[c]&(_P))
c24include/linux/ctype.h#define isspace(c) ((_ctype+1)[c]&(_S))
c25include/linux/ctype.h#define isupper(c) ((_ctype+1)[c]&(_U))
c26include/linux/ctype.h#define isxdigit(c) ((_ctype+1)[c]&(_D|_X))
c28include/linux/ctype.h#define isascii(c) (((unsigned) c)<=0x7f)
c29include/linux/ctype.h#define toascii(c) (((unsigned) c)&0x7f)
c31include/linux/ctype.h#define tolower(c) (_ctmp=c,isupper(_ctmp)?_ctmp-('A'-'a'):_ctmp)
c32include/linux/ctype.h#define toupper(c) (_ctmp=c,islower(_ctmp)?_ctmp-('a'-'A'):_ctmp)
c33include/linux/ioctl.h#define _IO(c,d)  (IOC_VOID | ((c)<<8) | (d)) /* param encoded */
c38include/linux/ioctl.h#define _IOW(c,d,t)  (IOC_IN | ((sizeof(t)<<16) & IOCSIZE_MASK) | \
c39include/linux/ioctl.h((c)<<8) | (d))
c40include/linux/ioctl.h#define _IOR(c,d,t)  (IOC_OUT | ((sizeof(t)<<16) & IOCSIZE_MASK) | \
c41include/linux/ioctl.h((c)<<8) | (d))
c43include/linux/ioctl.h#define _IOWR(c,d,t)  (IOC_INOUT | ((sizeof(t)<<16) & IOCSIZE_MASK) | \
c44include/linux/ioctl.h((c)<<8) | (d))
c127include/linux/string.hextern inline char * strchr(const char * s,char c)
c140include/linux/string.h:"=a" (__res):"S" (s),"0" (c):"si");
c144include/linux/string.hextern inline char * strrchr(const char * s,char c)
c156include/linux/string.h:"=d" (__res):"0" (0),"S" (s),"a" (c):"ax","si");
c390include/linux/string.hextern inline void * memchr(const void * cs,char c,size_t count)
c401include/linux/string.h:"=D" (__res):"a" (c),"D" (cs),"c" (count)
c406include/linux/string.hextern inline void * memset(void * s,char c,size_t count)
c412include/linux/string.h:"a" (c),"D" (s),"c" (count)
c144include/linux/tty.hextern void put_tty_queue(char c, struct tty_queue * queue);
c176include/linux/unistd.h#define _syscall3(type,name,atype,a,btype,b,ctype,c) \
c177include/linux/unistd.htype name(atype a,btype b,ctype c) \
c182include/linux/unistd.h: "0" (__NR_##name),"b" ((long)(a)),"c" ((long)(b)),"d" ((long)(c))); \
c189include/linux/unistd.h#define _syscall4(type,name,atype,a,btype,b,ctype,c,dtype,d) \
c190include/linux/unistd.htype name (atype a, btype b, ctype c, dtype d) \
c196include/linux/unistd.h"d" ((long)(c)),"S" ((long)(d))); \
c203include/linux/unistd.h#define _syscall5(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e) \
c204include/linux/unistd.htype name (atype a,btype b,ctype c,dtype d,etype e) \
c210include/linux/unistd.h"d" ((long)(c)),"S" ((long)(d)),"D" ((long)(e))); \
c92kernel/FPU-emu/fpu_etc.cint c=0;
c96kernel/FPU-emu/fpu_etc.cc = SW_C3|SW_C0;
c99kernel/FPU-emu/fpu_etc.cc = SW_C3;
c104kernel/FPU-emu/fpu_etc.cc = SW_C2|SW_C3;  /* Denormal */
c106kernel/FPU-emu/fpu_etc.cc = SW_C2;
c109kernel/FPU-emu/fpu_etc.cc = SW_C0;
c112kernel/FPU-emu/fpu_etc.cc = SW_C2|SW_C0;
c116kernel/FPU-emu/fpu_etc.cc |= SW_C1;
c117kernel/FPU-emu/fpu_etc.csetcc(c);
c173kernel/FPU-emu/reg_compare.cint f, c;
c175kernel/FPU-emu/reg_compare.cc = compare(&FPU_loaded_data);
c177kernel/FPU-emu/reg_compare.cif (c & COMP_NaN)
c183kernel/FPU-emu/reg_compare.cswitch (c & 7)
c205kernel/FPU-emu/reg_compare.cif (c & COMP_Denormal)
c215kernel/FPU-emu/reg_compare.cint f, c;
c225kernel/FPU-emu/reg_compare.cc = compare(&st(nr));
c226kernel/FPU-emu/reg_compare.cif (c & COMP_NaN)
c233kernel/FPU-emu/reg_compare.cswitch (c & 7)
c255kernel/FPU-emu/reg_compare.cif (c & COMP_Denormal)
c265kernel/FPU-emu/reg_compare.cint f, c;
c275kernel/FPU-emu/reg_compare.cc = compare(&st(nr));
c276kernel/FPU-emu/reg_compare.cif (c & COMP_NaN)
c279kernel/FPU-emu/reg_compare.cif (c & COMP_SNaN)       /* This is the only difference between
c288kernel/FPU-emu/reg_compare.cswitch (c & 7)
c310kernel/FPU-emu/reg_compare.cif (c & COMP_Denormal)
c59kernel/FPU-emu/reg_constant.cstatic void fld_const(FPU_REG *c)
c69kernel/FPU-emu/reg_constant.creg_move(c, FPU_st0_ptr);
c193kernel/FPU-emu/reg_ld_str.cint c = FPU_loaded_data.sign;
c195kernel/FPU-emu/reg_ld_str.cFPU_loaded_data.sign = c;
c241kernel/FPU-emu/reg_ld_str.cint c = FPU_loaded_data.sign;
c243kernel/FPU-emu/reg_ld_str.cFPU_loaded_data.sign = c;
c220kernel/blk_drv/hd.cunsigned char c;
c223kernel/blk_drv/hd.cc = inb_p(HD_STATUS);
c224kernel/blk_drv/hd.cc &= (BUSY_STAT | READY_STAT | SEEK_STAT);
c225kernel/blk_drv/hd.cif (c == (READY_STAT | SEEK_STAT))
c228kernel/blk_drv/hd.cprintk("HD controller times out, status = 0x%02x\n",c);
c448kernel/blk_drv/mcd.cint a, b, c, d;
c452kernel/blk_drv/mcd.cgetValue(&c);
c454kernel/blk_drv/mcd.cprintk("%02X %02X %02X %02X\n", a, b, c, d);
c156kernel/chr_drv/atixlmouse.cunsigned char a,b,c;
c160kernel/chr_drv/atixlmouse.cc = inb( ATIXL_MSE_SIGNATURE_PORT );
c161kernel/chr_drv/atixlmouse.cif (( a != b ) && ( a == c ))
c958kernel/chr_drv/console.cint c;
c973kernel/chr_drv/console.cwhile (!tty->stopped &&  (c = get_tty_queue(&tty->write_q)) >= 0) {
c974kernel/chr_drv/console.cif (state == ESnormal && translate[c]) {
c981kernel/chr_drv/console.cc = translate[c];
c982kernel/chr_drv/console.c*(unsigned short *) pos = (attr << 8) + c;
c996kernel/chr_drv/console.cswitch (c) {
c1043kernel/chr_drv/console.cswitch (c) {
c1094kernel/chr_drv/console.cif (c == '[') { /* Function key */
c1098kernel/chr_drv/console.cques = (c=='?');
c1102kernel/chr_drv/console.cif (c==';' && npar<NPAR-1) {
c1105kernel/chr_drv/console.c} else if (c>='0' && c<='9') {
c1107kernel/chr_drv/console.cpar[npar] += c-'0';
c1112kernel/chr_drv/console.cswitch(c) {
c1131kernel/chr_drv/console.cswitch(c) {
c1234kernel/chr_drv/console.cif (c == '8') {
c1244kernel/chr_drv/console.cif (c == '0')
c1246kernel/chr_drv/console.celse if (c == 'B')
c1248kernel/chr_drv/console.celse if (c == 'U')
c1255kernel/chr_drv/console.cif (c == '0')
c1257kernel/chr_drv/console.celse if (c == 'B')
c1259kernel/chr_drv/console.celse if (c == 'U')
c1289kernel/chr_drv/console.cvoid * memsetw(void * s,unsigned short c,int count)
c1295kernel/chr_drv/console.c:"a" (c),"D" (s),"c" (count)
c1303kernel/chr_drv/console.cunsigned char c;
c1307kernel/chr_drv/console.cwhile ((c = *(b++)) != 0) {
c1308kernel/chr_drv/console.cif (c == 10 || c == 13 || need_wrap) {
c1309kernel/chr_drv/console.cif (c != 13)
c1312kernel/chr_drv/console.cif (c == 10 || c == 13)
c1315kernel/chr_drv/console.c*(unsigned short *) pos = (attr << 8) + c;
c1574kernel/chr_drv/console.cstatic inline int inword(const char c) { return (isalnum(c) || c == '_'); }
c194kernel/chr_drv/lp.cchar c, *temp = buf;
c206kernel/chr_drv/lp.cc = get_fs_byte(temp);
c207kernel/chr_drv/lp.cretval = lp_char_polled(c, minor);
c375kernel/chr_drv/psaux.cunsigned char c;
c391kernel/chr_drv/psaux.cc = get_from_queue();
c392kernel/chr_drv/psaux.cput_fs_byte(c, buffer++);
c52kernel/chr_drv/pty.cint c;
c61kernel/chr_drv/pty.cc = get_tty_queue(&from->write_q);
c62kernel/chr_drv/pty.cput_tty_queue(c, &to->read_q);
c2327kernel/chr_drv/tpqic02.cint c;
c2350kernel/chr_drv/tpqic02.cc = iocmd & IOCCMD_MASK;
c2351kernel/chr_drv/tpqic02.cif (c == (MTIOCTOP & IOCCMD_MASK)) {
c2405kernel/chr_drv/tpqic02.c} else if (c == (MTIOCGET & IOCCMD_MASK)) {
c2433kernel/chr_drv/tpqic02.c} else if (c == (MTIOCPOS & IOCCMD_MASK)) {
c2452kernel/chr_drv/tpqic02.cc = rdstatus((char *) blk_addr, sizeof(blk_addr), QCMDV_TELL_BLK);
c2453kernel/chr_drv/tpqic02.cif (c!=TE_OK)
c97kernel/chr_drv/tty_io.cvoid put_tty_queue(char c, struct tty_queue * queue)
c106kernel/chr_drv/tty_io.cqueue->buf[queue->head] = c;
c479kernel/chr_drv/tty_io.cint c, special_flag;
c496kernel/chr_drv/tty_io.cc = LEFT(&tty->secondary);
c497kernel/chr_drv/tty_io.cif (tty->throttle && (c < SQ_THRESHOLD_LW)
c500kernel/chr_drv/tty_io.cif (c == 0)
c504kernel/chr_drv/tty_io.cc = 0xff & tty->read_q.buf[tty->read_q.tail];
c515kernel/chr_drv/tty_io.ctty->char_error = c & 3;
c538kernel/chr_drv/tty_io.cput_tty_queue(c, &tty->secondary);
c544kernel/chr_drv/tty_io.cc &= 0x7f;
c545kernel/chr_drv/tty_io.celse if (I_PARMRK(tty) && (c == '\377'))
c547kernel/chr_drv/tty_io.cif (c==13) {
c549kernel/chr_drv/tty_io.cc=10;
c552kernel/chr_drv/tty_io.c} else if (c==10 && I_NLCR(tty))
c553kernel/chr_drv/tty_io.cc=13;
c555kernel/chr_drv/tty_io.cc=tolower(c);
c556kernel/chr_drv/tty_io.cif (c == __DISABLED_CHAR)
c559kernel/chr_drv/tty_io.cif (c == KILL_CHAR(tty) || c == WERASE_CHAR(tty)) {
c561kernel/chr_drv/tty_io.c(c == WERASE_CHAR(tty)) ? 0 : -1;
c565kernel/chr_drv/tty_io.c(c=LAST(&tty->secondary))==10 ||
c567kernel/chr_drv/tty_io.c(c==EOF_CHAR(tty))))) {
c572kernel/chr_drv/tty_io.cif (isalnum(c))
c578kernel/chr_drv/tty_io.cif (c<32) {
c591kernel/chr_drv/tty_io.cif (c == ERASE_CHAR(tty)) {
c593kernel/chr_drv/tty_io.c(c=LAST(&tty->secondary))==10 ||
c595kernel/chr_drv/tty_io.c(c==EOF_CHAR(tty))))
c598kernel/chr_drv/tty_io.cif (c<32) {
c610kernel/chr_drv/tty_io.cif (c == LNEXT_CHAR(tty)) {
c620kernel/chr_drv/tty_io.cif (c == STOP_CHAR(tty)) {
c633kernel/chr_drv/tty_io.c(c == START_CHAR(tty))) {
c647kernel/chr_drv/tty_io.cif (c == INTR_CHAR(tty)) {
c655kernel/chr_drv/tty_io.cif (c == QUIT_CHAR(tty)) {
c663kernel/chr_drv/tty_io.cif (c == SUSPEND_CHAR(tty)) {
c674kernel/chr_drv/tty_io.cif (c==10 || (EOF_CHAR(tty) != __DISABLED_CHAR &&
c675kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)))
c677kernel/chr_drv/tty_io.cif ((c==10) && (L_ECHO(tty) || (L_CANON(tty) && L_ECHONL(tty)))) {
c681kernel/chr_drv/tty_io.cif (c<32 && L_ECHOCTL(tty)) {
c683kernel/chr_drv/tty_io.cput_tty_queue(c+'A'-1, &tty->write_q);
c685kernel/chr_drv/tty_io.cc==EOF_CHAR(tty) && !tty->lnext) {
c690kernel/chr_drv/tty_io.cput_tty_queue(c, &tty->write_q);
c693kernel/chr_drv/tty_io.cput_tty_queue(c, &tty->secondary);
c729kernel/chr_drv/tty_io.cint c;
c786kernel/chr_drv/tty_io.cwhile (nr > 0 && ((c = get_tty_queue(&tty->secondary)) >= 0)) {
c788kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)) || c==10)
c791kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)) && L_CANON(tty))
c793kernel/chr_drv/tty_io.cput_fs_byte(c,b++);
c797kernel/chr_drv/tty_io.cif (c==10 && L_CANON(tty))
c896kernel/chr_drv/tty_io.cchar c, *b=buf;
c922kernel/chr_drv/tty_io.cc=get_fs_byte(b);
c924kernel/chr_drv/tty_io.cswitch (c) {
c931kernel/chr_drv/tty_io.cc = '\r';
c945kernel/chr_drv/tty_io.cc = '\n';
c954kernel/chr_drv/tty_io.cc = ' ';
c966kernel/chr_drv/tty_io.cc = toupper(c);
c972kernel/chr_drv/tty_io.cput_tty_queue(c,&tty->write_q);
c110kernel/chr_drv/tty_ioctl.cchar *c, *d;
c119kernel/chr_drv/tty_ioctl.cc = (char *)(*p);
c122kernel/chr_drv/tty_ioctl.cput_fs_byte(*c++, d++);
c340kernel/chr_drv/tty_ioctl.cchar c, * tmp;
c347kernel/chr_drv/tty_ioctl.cc = get_fs_byte(i + (char *) ws);
c348kernel/chr_drv/tty_ioctl.cif (c == *tmp)
c351kernel/chr_drv/tty_ioctl.c*tmp = c;
c54kernel/printk.cchar c;
c81kernel/printk.cc = *((char *) log_buf+log_start);
c86kernel/printk.cput_fs_byte(c,buf);
c107kernel/printk.cc = *((char *) log_buf+(j++ & (LOG_BUF_LEN-1)));
c108kernel/printk.cput_fs_byte(c, buf++);
c120kernel/sched.cint c;
c156kernel/sched.cc = -1;
c161kernel/sched.cif (p->state == TASK_RUNNING && p->counter > c)
c162kernel/sched.cc = p->counter, next = p;
c165kernel/sched.cif (!c) {
c43kernel/vsprintf.c#define is_digit(c)  ((c) >= '0' && (c) <= '9')
c70kernel/vsprintf.cchar c,sign,tmp[36];
c78kernel/vsprintf.cc = (type & ZEROPAD) ? '0' : ' ' ;
c109kernel/vsprintf.c*str++ = c;
c120net/drv/slip/slip.cregister unsigned char c;
c127net/drv/slip/slip.cc = (get_tty_queue(&tty->read_q) & 0377);
c128net/drv/slip/slip.c*buf++ = c;
c129net/drv/slip/slip.cPRINTK ((" %02x", (int) (c & 255)));
c223net/drv/slip/slip.cput_sl_queue(struct sl_queue * queue, char c)
c231net/drv/slip/slip.cqueue->buf[queue->head] = c;
c481net/drv/slip/slip.cunsigned char c;
c495net/drv/slip/slip.cc = *p++;
c496net/drv/slip/slip.cswitch(c) {
c501net/drv/slip/slip.cif (sl->escape) c = ESC;
c502net/drv/slip/slip.cput_sl_queue(&sl->rcv_queue, c);
c507net/drv/slip/slip.cif (sl->escape) c = END;
c508net/drv/slip/slip.cput_sl_queue(&sl->rcv_queue, c);
c526net/drv/slip/slip.cput_sl_queue(&sl->rcv_queue, c);
c198net/inet/slip.csl_enqueue(struct slip *sl, unsigned char c)
c205net/inet/slip.c*sl->rhead = c;
c261net/inet/slip.cunsigned char c;
c267net/inet/slip.cif ((c = sl->rbuff[0]) & SL_TYPE_COMPRESSED_TCP) {
c288net/inet/slip.c} else if (c >= SL_TYPE_UNCOMPRESSED_TCP) {
c328net/inet/slip.cunsigned char c;
c354net/inet/slip.cc = *p++;
c355net/inet/slip.cswitch(c) {
c367net/inet/slip.c*bp++ = c;
c555net/inet/slip.cunsigned char *p, c;
c569net/inet/slip.cc = *p++;
c571net/inet/slip.cif (c == ESC_ESC)
c573net/inet/slip.celse if (c == ESC_END)
c579net/inet/slip.cif (c == ESC)
c581net/inet/slip.celse if (c == END) {
c585net/inet/slip.c} else  sl_enqueue(sl, c);
c1450net/inet/sock.cvoid *c = kmalloc(size, priority);
c1452net/inet/sock.cif (c) sk->rmem_alloc += size;
c1454net/inet/sock.creturn(c);
c87tools/build.cint i,c,id, sz;
c166tools/build.cfor (i=0 ; (c=read(id,buf,sizeof buf))>0 ; i+=c )
c167tools/build.cif (write(1,buf,c)!=c)
c169tools/build.cif (c != 0)
c176tools/build.cfor (c=0 ; c<sizeof(buf) ; c++)
c177tools/build.cbuf[c] = '\0';
c179tools/build.cc = SETUP_SECTS*512-i;
c180tools/build.cif (c > sizeof(buf))
c181tools/build.cc = sizeof(buf);
c182tools/build.cif (write(1,buf,c) != c)
c184tools/build.ci += c;
c188zBoot/gzip.h#define put_byte(c) {outbuf[outcnt++]=(uch)(c); if (outcnt==OUTBUFSIZ)\
c190zBoot/gzip.h#define put_char(c) {window[outcnt++]=(uch)(c); if (outcnt==WSIZE)\
c213zBoot/gzip.h#define tolow(c)  (isupper(c) ? (c)-'A'+'a' : (c))    /* force to lower case */
c225zBoot/gzip.h#  define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
c226zBoot/gzip.h#  define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
c232zBoot/gzip.h#  define Tracec(c,x)
c233zBoot/gzip.h#  define Tracecv(c,x)
c114zBoot/inflate.cunsigned c[BMAX+1];           /* bit length count table */
c136zBoot/inflate.cmemzero(c, sizeof(c));
c139zBoot/inflate.cc[*p++]++;                  /* assume all entries <= BMAX */
c141zBoot/inflate.cif (c[0] == n)                /* null input--all zero length codes */
c153zBoot/inflate.cif (c[j])
c159zBoot/inflate.cif (c[i])
c170zBoot/inflate.cif ((y -= c[j]) < 0)
c172zBoot/inflate.cif ((y -= c[i]) < 0)
c174zBoot/inflate.cc[i] += y;
c180zBoot/inflate.cp = c + 1;  xp = x + 2;
c210zBoot/inflate.ca = c[k];
c228zBoot/inflate.cxp = c + k;
c116zBoot/misc.cchar c;
c121zBoot/misc.cwhile ( ( c = *s++ ) != '\0' ) {
c122zBoot/misc.cif ( c == '\n' ) {
c129zBoot/misc.cvidmem [ ( x + cols * y ) * 2 ] = c; 
c144zBoot/misc.c__ptr_t memset(__ptr_t s, int c, size_t n)
c149zBoot/misc.cfor (i=0;i<n;i++) ss[i] = c;
c172zBoot/misc.cregister ulg c;         /* temporary variable */
c177zBoot/misc.cc = 0xffffffffL;
c179zBoot/misc.cc = crc;
c181zBoot/misc.cc = crc_32_tab[((int)c ^ (*s++)) & 0xff] ^ (c >> 8);
c184zBoot/misc.ccrc = c;
c185zBoot/misc.creturn c ^ 0xffffffffL;       /* (instead of ~c for 64-bit machines) */
c254zBoot/misc.cunsigned long c;      /* crc shift register */
c271zBoot/misc.cc = 0;
c274zBoot/misc.cc = c & 1 ? (c >> 1) ^ e : c >> 1;
c276zBoot/misc.cc ^= e;
c278zBoot/misc.ccrc_32_tab[i] = c;
c18zBoot/piggyback.cint c, n=0, len=0;
c133zBoot/unzip.cuch c = (uch)get_byte();
c135zBoot/unzip.cif (decrypt) zdecode(c);
c137zBoot/unzip.cif (!test) put_char(c);
c38zBoot/xtract.cint i,c,id, sz;