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);
c196fs/ext/file.cint written,c;
c224fs/ext/file.cc = BLOCK_SIZE - (pos % BLOCK_SIZE);
c225fs/ext/file.cif (c > count-written)
c226fs/ext/file.cc = count-written;
c227fs/ext/file.cif (c != BLOCK_SIZE && !bh->b_uptodate) {
c238fs/ext/file.cpos += c;
c243fs/ext/file.cwritten += c;
c244fs/ext/file.cmemcpy_fromfs(p,buf,c);
c245fs/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++);
c202fs/ext2/file.cint written, c;
c235fs/ext2/file.cc = sb->s_blocksize - (pos % sb->s_blocksize);
c236fs/ext2/file.cif (c > count-written)
c237fs/ext2/file.cc = count - written;
c238fs/ext2/file.cif (c != sb->s_blocksize && !bh->b_uptodate) {
c249fs/ext2/file.cpos += c;
c254fs/ext2/file.cwritten += c;
c255fs/ext2/file.cmemcpy_fromfs (p, buf, c);
c256fs/ext2/file.cbuf += c;
c612fs/ext2/namei.cchar c;
c643fs/ext2/namei.cwhile (i < inode->i_sb->s_blocksize - 1 && (c = *(symname ++)))
c644fs/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;
c178fs/isofs/dir.cif (!(c = dpnt[i])) break;
c179fs/isofs/dir.cif (c >= 'A' && c <= 'Z') c |= 0x20;  /* lower case */
c180fs/isofs/dir.cif (c == ';' && i == dlen-2 && de->name[i+1] == '1') 
c182fs/isofs/dir.cif (c == ';') c = '.';  /* Convert remaining ';' to '.' */
c183fs/isofs/dir.cdpnt[i] = c;
c75fs/isofs/namei.cchar c;
c154fs/isofs/namei.cc = dpnt[i];
c155fs/isofs/namei.cif (c >= 'A' && c <= 'Z') c |= 0x20;  /* lower case */
c156fs/isofs/namei.cif (c == ';' && i == dlen-2 && dpnt[i+1] == '1') {
c160fs/isofs/namei.cif (c == ';') c = '.';
c161fs/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);
c190fs/minix/file.cint written,c;
c218fs/minix/file.cc = BLOCK_SIZE - (pos % BLOCK_SIZE);
c219fs/minix/file.cif (c > count-written)
c220fs/minix/file.cc = count-written;
c221fs/minix/file.cif (c != BLOCK_SIZE && !bh->b_uptodate) {
c232fs/minix/file.cpos += c;
c237fs/minix/file.cwritten += c;
c238fs/minix/file.cmemcpy_fromfs(p,buf,c);
c239fs/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.cchar 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)
c52fs/namei.c*(tmp++) = c;
c53fs/namei.cc = get_fs_byte(filename++);
c54fs/namei.cif (!c) {
c163fs/namei.cchar c;
c173fs/namei.cif ((c = *pathname) == '/') {
c181fs/namei.cfor(len=0;(c = *(pathname++))&&(c != '/');len++)
c183fs/namei.cif (!c)
c188fs/namei.c((char *) thisname)[len] = 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++);
c33fs/proc/array.cint a, b, c;
c37fs/proc/array.cc = avenrun[2] + (FIXED_1/200);
c41fs/proc/array.cLOAD_INT(c), LOAD_FRAC(c));
c116fs/proc/array.cchar c;
c125fs/proc/array.cc = *(char *) addr;
c126fs/proc/array.cif (!c)
c129fs/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;
c69fs/proc/root.cunsigned int pid, c;
c93fs/proc/root.cc = *name - '0';
c95fs/proc/root.cif (c > 9) {
c100fs/proc/root.cpid += c;
c189fs/xiafs/file.cint written, c;
c217fs/xiafs/file.cc = XIAFS_ZSIZE(inode->i_sb) - (pos & (XIAFS_ZSIZE(inode->i_sb) - 1));
c218fs/xiafs/file.cif (c > count-written)
c219fs/xiafs/file.cc = count-written;
c220fs/xiafs/file.cif (c != XIAFS_ZSIZE(inode->i_sb) && !bh->b_uptodate) {
c231fs/xiafs/file.cpos += c;
c236fs/xiafs/file.cwritten += c;
c237fs/xiafs/file.cmemcpy_fromfs(cp,buf,c);
c238fs/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++);
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)
c27include/linux/ioctl.h#define _IO(c,d)  (IOC_VOID | ((d)<<16) | c) /* param encoded */
c31include/linux/ioctl.h#define _IOW(c,d,t)  (IOC_IN | ((sizeof(t)<<16) & IOCSIZE_MASK) | \
c32include/linux/ioctl.h(c<<8) | d)
c33include/linux/ioctl.h#define _IOR(c,d,t)  (IOC_OUT | ((sizeof(t)<<16) & IOCSIZE_MASK) | \
c34include/linux/ioctl.h(c<<8) | d)
c36include/linux/ioctl.h#define _IOWR(c,d,t)  (IOC_INOUT | ((sizeof(t)<<16) & IOCSIZE_MASK) | \
c37include/linux/ioctl.h(c<<8) | d)
c123include/linux/string.hextern inline char * strchr(const char * s,char c)
c136include/linux/string.h:"=a" (__res):"S" (s),"0" (c):"si");
c140include/linux/string.hextern inline char * strrchr(const char * s,char c)
c152include/linux/string.h:"=d" (__res):"0" (0),"S" (s),"a" (c):"ax","si");
c383include/linux/string.hextern inline void * memchr(const void * cs,char c,size_t count)
c394include/linux/string.h:"=D" (__res):"a" (c),"D" (cs),"c" (count)
c399include/linux/string.hextern inline void * memset(void * s,char c,size_t count)
c404include/linux/string.h::"a" (c),"D" (s),"c" (count)
c134include/linux/tty.hextern void put_tty_queue(char c, struct tty_queue * queue);
c174include/linux/unistd.h#define _syscall3(type,name,atype,a,btype,b,ctype,c) \
c175include/linux/unistd.htype name(atype a,btype b,ctype c) \
c181include/linux/unistd.h: "0" (__NR_##name),"g" ((long)(a)),"c" ((long)(b)),"d" ((long)(c)):"bx"); \
c188include/linux/unistd.h#define _syscall4(type,name,atype,a,btype,b,ctype,c,dtype,d) \
c189include/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) \
c211include/linux/unistd.h"d" ((long)(c)),"S" ((long)(d)),"D" ((long)(e))); \
c81kernel/FPU-emu/fpu_etc.cint c=0;
c85kernel/FPU-emu/fpu_etc.cc = SW_C3|SW_C0;
c88kernel/FPU-emu/fpu_etc.cc = SW_C3;
c92kernel/FPU-emu/fpu_etc.cc = SW_C2;
c94kernel/FPU-emu/fpu_etc.cc = SW_C3|SW_C2;
c97kernel/FPU-emu/fpu_etc.cc = SW_C0;
c100kernel/FPU-emu/fpu_etc.cc = SW_C2|SW_C0;
c104kernel/FPU-emu/fpu_etc.cc |= SW_C1;
c105kernel/FPU-emu/fpu_etc.csetcc(c);
c481kernel/FPU-emu/fpu_trig.cint c = 0;
c492kernel/FPU-emu/fpu_trig.cif (q&4) c |= SW_C3;
c493kernel/FPU-emu/fpu_trig.cif (q&2) c |= SW_C1;
c494kernel/FPU-emu/fpu_trig.cif (q&1) c |= SW_C0;
c496kernel/FPU-emu/fpu_trig.csetcc(c);
c117kernel/FPU-emu/reg_compare.cint c = compare(&FPU_loaded_data);
c119kernel/FPU-emu/reg_compare.cif (c & COMP_NAN)
c125kernel/FPU-emu/reg_compare.cswitch (c)
c152kernel/FPU-emu/reg_compare.cint c = compare(&st(nr));
c154kernel/FPU-emu/reg_compare.cif (c & COMP_NAN)
c160kernel/FPU-emu/reg_compare.cswitch (c)
c188kernel/FPU-emu/reg_compare.cint c = compare(&st(nr));
c189kernel/FPU-emu/reg_compare.cif (c & COMP_NAN)
c191kernel/FPU-emu/reg_compare.cif (c & COMP_SNAN)       /* This is the only difference between
c197kernel/FPU-emu/reg_compare.cswitch (c)
c54kernel/FPU-emu/reg_constant.cstatic void fld_const(FPU_REG *c)
c64kernel/FPU-emu/reg_constant.creg_move(c, FPU_st0_ptr);
c149kernel/FPU-emu/reg_ld_str.cint c = FPU_loaded_data.sign;
c151kernel/FPU-emu/reg_ld_str.cFPU_loaded_data.sign = c;
c197kernel/FPU-emu/reg_ld_str.cint c = FPU_loaded_data.sign;
c199kernel/FPU-emu/reg_ld_str.cFPU_loaded_data.sign = c;
c204kernel/blk_drv/hd.cunsigned char c;
c207kernel/blk_drv/hd.cc = inb_p(HD_STATUS);
c208kernel/blk_drv/hd.cc &= (BUSY_STAT | READY_STAT | SEEK_STAT);
c209kernel/blk_drv/hd.cif (c == (READY_STAT | SEEK_STAT))
c212kernel/blk_drv/hd.cprintk("HD controller times out, status = 0x%02x\n",c);
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 ))
c895kernel/chr_drv/console.cint c;
c904kernel/chr_drv/console.cwhile (!tty->stopped &&  (c = get_tty_queue(&tty->write_q)) >= 0) {
c905kernel/chr_drv/console.cif (state == ESnormal && translate[c]) {
c912kernel/chr_drv/console.cc = translate[c];
c913kernel/chr_drv/console.c*(char *) pos = c;
c928kernel/chr_drv/console.cswitch (c) {
c975kernel/chr_drv/console.cswitch (c) {
c1026kernel/chr_drv/console.cif (c == '[') { /* Function key */
c1030kernel/chr_drv/console.cques = (c=='?');
c1034kernel/chr_drv/console.cif (c==';' && npar<NPAR-1) {
c1037kernel/chr_drv/console.c} else if (c>='0' && c<='9') {
c1039kernel/chr_drv/console.cpar[npar] += c-'0';
c1044kernel/chr_drv/console.cswitch(c) {
c1063kernel/chr_drv/console.cswitch(c) {
c1166kernel/chr_drv/console.cif (c == '8') {
c1176kernel/chr_drv/console.cif (c == '0')
c1178kernel/chr_drv/console.celse if (c == 'B')
c1180kernel/chr_drv/console.celse if (c == 'U')
c1187kernel/chr_drv/console.cif (c == '0')
c1189kernel/chr_drv/console.celse if (c == 'B')
c1191kernel/chr_drv/console.celse if (c == 'U')
c1221kernel/chr_drv/console.cvoid * memsetw(void * s,unsigned short c,int count)
c1226kernel/chr_drv/console.c::"a" (c),"D" (s),"c" (count)
c1459kernel/chr_drv/console.cchar c;
c1463kernel/chr_drv/console.cwhile ((c = *(b++)) != 0) {
c1464kernel/chr_drv/console.cif (c == 10 || c == 13 || need_wrap) {
c1465kernel/chr_drv/console.cif (c != 13)
c1468kernel/chr_drv/console.cif (c == 10 || c == 13)
c1471kernel/chr_drv/console.c*(char *) pos = 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);
c226kernel/chr_drv/psaux.cunsigned char c;
c242kernel/chr_drv/psaux.cc = get_from_queue();
c243kernel/chr_drv/psaux.cput_fs_byte(c, buffer++);
c41kernel/chr_drv/pty.cint c;
c50kernel/chr_drv/pty.cc = get_tty_queue(&from->write_q);
c51kernel/chr_drv/pty.cput_tty_queue(c, &to->read_q);
c92kernel/chr_drv/tty_io.cvoid put_tty_queue(char c, struct tty_queue * queue)
c100kernel/chr_drv/tty_io.cqueue->buf[queue->head] = c;
c468kernel/chr_drv/tty_io.cint c, special_flag;
c485kernel/chr_drv/tty_io.cc = LEFT(&tty->secondary);
c486kernel/chr_drv/tty_io.cif (tty->throttle && (c < SQ_THRESHOLD_LW)
c489kernel/chr_drv/tty_io.cif (c == 0)
c493kernel/chr_drv/tty_io.cc = 0xff & tty->read_q.buf[tty->read_q.tail];
c504kernel/chr_drv/tty_io.ctty->char_error = c & 3;
c527kernel/chr_drv/tty_io.cput_tty_queue(c, &tty->secondary);
c533kernel/chr_drv/tty_io.cc &= 0x7f;
c534kernel/chr_drv/tty_io.celse if (I_PARMRK(tty) && (c == 0377))
c536kernel/chr_drv/tty_io.cif (c==13) {
c538kernel/chr_drv/tty_io.cc=10;
c541kernel/chr_drv/tty_io.c} else if (c==10 && I_NLCR(tty))
c542kernel/chr_drv/tty_io.cc=13;
c544kernel/chr_drv/tty_io.cc=tolower(c);
c545kernel/chr_drv/tty_io.cif (c == __DISABLED_CHAR)
c548kernel/chr_drv/tty_io.cif (c == KILL_CHAR(tty)) {
c551kernel/chr_drv/tty_io.c(c=LAST(&tty->secondary))==10 ||
c553kernel/chr_drv/tty_io.c(c==EOF_CHAR(tty))))) {
c555kernel/chr_drv/tty_io.cif (c<32) {
c568kernel/chr_drv/tty_io.cif (c == ERASE_CHAR(tty)) {
c570kernel/chr_drv/tty_io.c(c=LAST(&tty->secondary))==10 ||
c572kernel/chr_drv/tty_io.c(c==EOF_CHAR(tty))))
c575kernel/chr_drv/tty_io.cif (c<32) {
c587kernel/chr_drv/tty_io.cif (c == LNEXT_CHAR(tty)) {
c597kernel/chr_drv/tty_io.cif (c == STOP_CHAR(tty)) {
c604kernel/chr_drv/tty_io.c(c == START_CHAR(tty))) {
c612kernel/chr_drv/tty_io.cif (c == INTR_CHAR(tty)) {
c617kernel/chr_drv/tty_io.cif (c == QUIT_CHAR(tty)) {
c622kernel/chr_drv/tty_io.cif (c == SUSPEND_CHAR(tty)) {
c628kernel/chr_drv/tty_io.cif (c==10 || (EOF_CHAR(tty) != __DISABLED_CHAR &&
c629kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)))
c631kernel/chr_drv/tty_io.cif ((c==10) && (L_ECHO(tty) || (L_CANON(tty) && L_ECHONL(tty)))) {
c635kernel/chr_drv/tty_io.cif (c<32 && L_ECHOCTL(tty)) {
c637kernel/chr_drv/tty_io.cput_tty_queue(c+64, &tty->write_q);
c639kernel/chr_drv/tty_io.cc==EOF_CHAR(tty) && !tty->lnext) {
c644kernel/chr_drv/tty_io.cput_tty_queue(c, &tty->write_q);
c647kernel/chr_drv/tty_io.cput_tty_queue(c, &tty->secondary);
c683kernel/chr_drv/tty_io.cint c;
c742kernel/chr_drv/tty_io.cwhile (nr > 0 && ((c = get_tty_queue(&tty->secondary)) >= 0)) {
c744kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)) || c==10)
c747kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)) && L_CANON(tty))
c749kernel/chr_drv/tty_io.cput_fs_byte(c,b++);
c753kernel/chr_drv/tty_io.cif (c==10 && L_CANON(tty))
c840kernel/chr_drv/tty_io.cchar c, *b=buf;
c866kernel/chr_drv/tty_io.cc=get_fs_byte(b);
c868kernel/chr_drv/tty_io.cif (c=='\r' && O_CRNL(tty))
c869kernel/chr_drv/tty_io.cc='\n';
c870kernel/chr_drv/tty_io.celse if (c=='\n' && O_NLRET(tty))
c871kernel/chr_drv/tty_io.cc='\r';
c872kernel/chr_drv/tty_io.cif (c=='\n' && O_NLCR(tty) &&
c878kernel/chr_drv/tty_io.cc=toupper(c);
c882kernel/chr_drv/tty_io.cput_tty_queue(c,&tty->write_q);
c104kernel/chr_drv/tty_ioctl.cchar *c, *d;
c113kernel/chr_drv/tty_ioctl.cc = (char *)(*p);
c116kernel/chr_drv/tty_ioctl.cput_fs_byte(*c++, d++);
c244kernel/chr_drv/tty_ioctl.cchar c, * tmp;
c251kernel/chr_drv/tty_ioctl.cc = get_fs_byte(i + (char *) ws);
c252kernel/chr_drv/tty_ioctl.cif (c == *tmp)
c255kernel/chr_drv/tty_ioctl.c*tmp = c;
c52kernel/printk.cchar c;
c79kernel/printk.cc = *((char *) log_buf+log_start);
c83kernel/printk.cput_fs_byte(c,buf);
c103kernel/printk.cc = *((char *) log_buf + (j++ & 4095));
c104kernel/printk.cput_fs_byte(c, buf++);
c104kernel/sched.cint i,next,c;
c123kernel/sched.cc = -1;
c130kernel/sched.cif ((*p)->state == TASK_RUNNING && (*p)->counter > c)
c131kernel/sched.cc = (*p)->counter, next = i;
c133kernel/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;
c119net/tcp/sock.c#define swap(a,b) {unsigned long c; c=a; a=b; b=c;}
c113net/tcp/tcp.c#define swap(a,b) {unsigned long c; c=a; a=b; b=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)
c286zBoot/inflate.cunsigned c[BMAX+1];           /* bit length count table */
c308zBoot/inflate.cmemzero(c, sizeof(c));
c313zBoot/inflate.cc[*p++]++;                  /* assume all entries <= BMAX */
c315zBoot/inflate.cif (c[0] == n)                /* null input--all zero length codes */
c327zBoot/inflate.cif (c[j])
c333zBoot/inflate.cif (c[i])
c344zBoot/inflate.cif ((y -= c[j]) < 0)
c346zBoot/inflate.cif ((y -= c[i]) < 0)
c348zBoot/inflate.cc[i] += y;
c354zBoot/inflate.cp = c + 1;  xp = x + 2;
c384zBoot/inflate.ca = c[k];
c402zBoot/inflate.cxp = c + k;
c108zBoot/misc.c__ptr_t memset(__ptr_t s, int c, size_t n)
c113zBoot/misc.cfor (i=0;i<n;i++) ss[i] = c;
c136zBoot/misc.cregister ulg c;         /* temporary variable */
c141zBoot/misc.cc = 0xffffffffL;
c143zBoot/misc.cc = crc;
c145zBoot/misc.cc = crc_32_tab[((int)c ^ (*s++)) & 0xff] ^ (c >> 8);
c148zBoot/misc.ccrc = c;
c149zBoot/misc.creturn c ^ 0xffffffffL;       /* (instead of ~c for 64-bit machines) */
c5zBoot/piggyback.cint c, n=0, len=0;
c12zBoot/piggyback.cwhile ((c=getchar()) != EOF)
c16zBoot/piggyback.cprintf("%d", c);
c131zBoot/unzip.cuch c = (uch)get_byte();
c133zBoot/unzip.cif (decrypt) zdecode(c);
c135zBoot/unzip.cif (!test) put_char(c);
c51zBoot/xtract.cint i,c,id, sz;