taglinefilesource code
c67fs/ext/dir.cchar c;
c99fs/ext/dir.cif ((c = de->name[i]) != 0)
c100fs/ext/dir.cput_fs_byte(c,i+dirent->d_name);
c195fs/ext/file.cint written,c;
c223fs/ext/file.cc = BLOCK_SIZE - (pos % BLOCK_SIZE);
c224fs/ext/file.cif (c > count-written)
c225fs/ext/file.cc = count-written;
c226fs/ext/file.cif (c != BLOCK_SIZE && !bh->b_uptodate) {
c237fs/ext/file.cpos += c;
c242fs/ext/file.cwritten += c;
c243fs/ext/file.cmemcpy_fromfs(p,buf,c);
c244fs/ext/file.cbuf += c;
c629fs/ext/namei.cchar c;
c646fs/ext/namei.cwhile (i < 1023 && (c=get_fs_byte(symname++)))
c647fs/ext/namei.cname_block->b_data[i++] = c;
c93fs/ext/symlink.cchar c;
c106fs/ext/symlink.cwhile (i<buflen && (c = bh->b_data[i])) {
c108fs/ext/symlink.cput_fs_byte(c,buffer++);
c66fs/isofs/dir.cchar c = 0;
c177fs/isofs/dir.cif (!(c = dpnt[i])) break;
c178fs/isofs/dir.cif (c >= 'A' && c <= 'Z') c |= 0x20;  /* lower case */
c179fs/isofs/dir.cif (c == ';' && i == dlen-2 && de->name[i+1] == '1') 
c181fs/isofs/dir.cif (c == ';') c = '.';  /* Convert remaining ';' to '.' */
c182fs/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;
c87fs/isofs/symlink.cchar c;
c103fs/isofs/symlink.cwhile (i<buflen && (c = pnt[i])) {
c105fs/isofs/symlink.cput_fs_byte(c,buffer++);
c60fs/minix/dir.cchar c;
c81fs/minix/dir.cif ((c = de->name[i]) != 0)
c82fs/minix/dir.cput_fs_byte(c,i+dirent->d_name);
c189fs/minix/file.cint written,c;
c217fs/minix/file.cc = BLOCK_SIZE - (pos % BLOCK_SIZE);
c218fs/minix/file.cif (c > count-written)
c219fs/minix/file.cc = count-written;
c220fs/minix/file.cif (c != BLOCK_SIZE && !bh->b_uptodate) {
c231fs/minix/file.cpos += c;
c236fs/minix/file.cwritten += c;
c237fs/minix/file.cmemcpy_fromfs(p,buf,c);
c238fs/minix/file.cbuf += c;
c506fs/minix/namei.cchar c;
c523fs/minix/namei.cwhile (i < 1023 && (c=get_fs_byte(symname++)))
c524fs/minix/namei.cname_block->b_data[i++] = c;
c87fs/minix/symlink.cchar c;
c100fs/minix/symlink.cwhile (i<buflen && (c = bh->b_data[i])) {
c102fs/minix/symlink.cput_fs_byte(c,buffer++);
c59fs/msdos/dir.cchar c,*walk;
c83fs/msdos/dir.cif (!(c = de->name[i])) break;
c84fs/msdos/dir.cif (c >= 'A' && c <= 'Z') c += 32;
c85fs/msdos/dir.cif (c != ' ') last = i+1;
c86fs/msdos/dir.cput_fs_byte(c,i+dirent->d_name);
c92fs/msdos/dir.cif (!(c = de->ext[i2])) break;
c93fs/msdos/dir.cif (c >= 'A' && c <= 'Z') c += 32;
c94fs/msdos/dir.cif (c != ' ') last = i+1;
c95fs/msdos/dir.cput_fs_byte(c,i+dirent->d_name);
c36fs/msdos/namei.cchar c;
c47fs/msdos/namei.cc = 0;
c49fs/msdos/namei.cc = get_fs_byte(name++);
c51fs/msdos/namei.cif (conv != 'r' && strchr(bad_chars,c)) return -EINVAL;
c52fs/msdos/namei.cif (conv == 's' && strchr(bad_if_strict,c)) return -EINVAL;
c53fs/msdos/namei.cif (c >= 'A' && c <= 'Z') {
c55fs/msdos/namei.cc += 32;
c57fs/msdos/namei.cif (c < ' ' || c == ':' || c == '\\') return -EINVAL;
c58fs/msdos/namei.cif (c == '.') break;
c59fs/msdos/namei.cspace = c == ' ';
c60fs/msdos/namei.c*walk = c >= 'a' && c <= 'z' ? c-32 : c;
c63fs/msdos/namei.cif (conv == 's' && len && c != '.') {
c64fs/msdos/namei.cc = get_fs_byte(name++);
c66fs/msdos/namei.cif (c != '.') return -EINVAL;
c68fs/msdos/namei.cwhile (c != '.' && len--) c = get_fs_byte(name++);
c70fs/msdos/namei.cif (c == '.') {
c73fs/msdos/namei.cc = get_fs_byte(name++);
c75fs/msdos/namei.cif (conv != 'r' && strchr(bad_chars,c)) return -EINVAL;
c76fs/msdos/namei.cif (conv == 's' && strchr(bad_if_strict,c))
c78fs/msdos/namei.cif (c < ' ' || c == ':' || c == '\\' || c == '.')
c80fs/msdos/namei.cif (c >= 'A' && c <= 'Z') {
c82fs/msdos/namei.cc += 32;
c84fs/msdos/namei.cspace = c == ' ';
c85fs/msdos/namei.c*walk++ = c >= 'a' && c <= 'z' ? c-32 : c;
c118fs/namei.cchar c;
c128fs/namei.cif ((c=get_fs_byte(pathname))=='/') {
c136fs/namei.cfor(len=0;(c=get_fs_byte(pathname++))&&(c!='/');len++)
c138fs/namei.cif (!c)
c483fs/nfs/dir.cint c;
c497fs/nfs/dir.cfor (i = 0; i < NFS_MAXPATHLEN && (c = get_fs_byte(symname++)); i++)
c498fs/nfs/dir.csymfilename[i] = c;
c90fs/nfs/symlink.cchar c;
c107fs/nfs/symlink.cfor (i = 0; i < buflen && (c = res[i]); i++)
c108fs/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));
c107fs/proc/array.cchar c;
c116fs/proc/array.cc = *(char *) addr;
c117fs/proc/array.cif (!c)
c120fs/proc/array.cbuffer[size++] = c;
c55fs/proc/fd.cunsigned int ino, pid, fd, c;
c88fs/proc/fd.cc = get_fs_byte(name) - '0';
c90fs/proc/fd.cif (c > 9) {
c95fs/proc/fd.cfd += c;
c68fs/proc/root.cunsigned int pid, c;
c92fs/proc/root.cc = get_fs_byte(name) - '0';
c94fs/proc/root.cif (c > 9) {
c99fs/proc/root.cpid += c;
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)
c127include/linux/tty.hextern void put_tty_queue(char c, struct tty_queue * queue);
c171include/linux/unistd.h#define _syscall3(type,name,atype,a,btype,b,ctype,c) \
c172include/linux/unistd.htype name(atype a,btype b,ctype c) \
c178include/linux/unistd.h: "0" (__NR_##name),"g" ((long)(a)),"c" ((long)(b)),"d" ((long)(c)):"bx"); \
c185include/linux/unistd.h#define _syscall4(type,name,atype,a,btype,b,ctype,c,dtype,d) \
c186include/linux/unistd.htype name (atype a, btype b, ctype c, dtype d) \
c193include/linux/unistd.h"d" ((long)(c)),"S" ((long)(d))); \
c200include/linux/unistd.h#define _syscall5(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e) \
c201include/linux/unistd.htype name (atype a,btype b,ctype c,dtype d,etype e) \
c208include/linux/unistd.h"d" ((long)(c)),"S" ((long)(d)),"D" ((long)(e))); \
c80kernel/FPU-emu/fpu_etc.cint c=0;
c84kernel/FPU-emu/fpu_etc.cc = SW_C3|SW_C0;
c87kernel/FPU-emu/fpu_etc.cc = SW_C3;
c91kernel/FPU-emu/fpu_etc.cc = SW_C2;
c93kernel/FPU-emu/fpu_etc.cc = SW_C3|SW_C2;
c96kernel/FPU-emu/fpu_etc.cc = SW_C0;
c99kernel/FPU-emu/fpu_etc.cc = SW_C2|SW_C0;
c103kernel/FPU-emu/fpu_etc.cc |= SW_C1;
c104kernel/FPU-emu/fpu_etc.csetcc(c);
c477kernel/FPU-emu/fpu_trig.cint c = 0;
c488kernel/FPU-emu/fpu_trig.cif (q&4) c |= SW_C3;
c489kernel/FPU-emu/fpu_trig.cif (q&2) c |= SW_C1;
c490kernel/FPU-emu/fpu_trig.cif (q&1) c |= SW_C0;
c492kernel/FPU-emu/fpu_trig.csetcc(c);
c111kernel/FPU-emu/reg_compare.cint c = compare(&FPU_loaded_data);
c113kernel/FPU-emu/reg_compare.cif (c & COMP_NAN)
c119kernel/FPU-emu/reg_compare.cswitch (c)
c146kernel/FPU-emu/reg_compare.cint c = compare(&st(nr));
c148kernel/FPU-emu/reg_compare.cif (c & COMP_NAN)
c154kernel/FPU-emu/reg_compare.cswitch (c)
c182kernel/FPU-emu/reg_compare.cint c = compare(&st(nr));
c183kernel/FPU-emu/reg_compare.cif (c & COMP_NAN)
c185kernel/FPU-emu/reg_compare.cif (c & COMP_SNAN)       /* This is the only difference between
c191kernel/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);
c148kernel/FPU-emu/reg_ld_str.cint c = FPU_loaded_data.sign;
c150kernel/FPU-emu/reg_ld_str.cFPU_loaded_data.sign = c;
c196kernel/FPU-emu/reg_ld_str.cint c = FPU_loaded_data.sign;
c198kernel/FPU-emu/reg_ld_str.cFPU_loaded_data.sign = c;
c200kernel/blk_drv/hd.cunsigned char c;
c203kernel/blk_drv/hd.cc = inb_p(HD_STATUS);
c204kernel/blk_drv/hd.cc &= (BUSY_STAT | READY_STAT | SEEK_STAT);
c205kernel/blk_drv/hd.cif (c == (READY_STAT | SEEK_STAT))
c208kernel/blk_drv/hd.cprintk("HD controller times out, status = 0x%02x\n\r",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 ))
c893kernel/chr_drv/console.cint c;
c902kernel/chr_drv/console.cwhile (!tty->stopped &&  (c = get_tty_queue(&tty->write_q)) >= 0) {
c903kernel/chr_drv/console.cif (state == ESnormal && translate[c]) {
c910kernel/chr_drv/console.cc = translate[c];
c911kernel/chr_drv/console.c*(char *) pos = c;
c926kernel/chr_drv/console.cswitch (c) {
c973kernel/chr_drv/console.cswitch (c) {
c1024kernel/chr_drv/console.cif (c == '[') { /* Function key */
c1028kernel/chr_drv/console.cques = (c=='?');
c1032kernel/chr_drv/console.cif (c==';' && npar<NPAR-1) {
c1035kernel/chr_drv/console.c} else if (c>='0' && c<='9') {
c1037kernel/chr_drv/console.cpar[npar] += c-'0';
c1042kernel/chr_drv/console.cswitch(c) {
c1061kernel/chr_drv/console.cswitch(c) {
c1164kernel/chr_drv/console.cif (c == '8') {
c1174kernel/chr_drv/console.cif (c == '0')
c1176kernel/chr_drv/console.celse if (c == 'B')
c1178kernel/chr_drv/console.celse if (c == 'U')
c1185kernel/chr_drv/console.cif (c == '0')
c1187kernel/chr_drv/console.celse if (c == 'B')
c1189kernel/chr_drv/console.celse if (c == 'U')
c1219kernel/chr_drv/console.cvoid * memsetw(void * s,unsigned short c,int count)
c1224kernel/chr_drv/console.c::"a" (c),"D" (s),"c" (count)
c1457kernel/chr_drv/console.cchar c;
c1461kernel/chr_drv/console.cwhile ((c = *(b++)) != 0) {
c1462kernel/chr_drv/console.cif (c == 10 || c == 13 || need_wrap) {
c1463kernel/chr_drv/console.cif (c != 13)
c1466kernel/chr_drv/console.cif (c == 10 || c == 13)
c1469kernel/chr_drv/console.c*(char *) pos = c;
c81kernel/chr_drv/keyboard.cstatic inline void send_cmd(unsigned char c)
c84kernel/chr_drv/keyboard.coutb(c,0x64);
c79kernel/chr_drv/lp.cchar c, *temp = buf;
c91kernel/chr_drv/lp.cc = get_fs_byte(temp);
c92kernel/chr_drv/lp.cretval = lp_char(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++);
c37kernel/chr_drv/pty.cint c;
c46kernel/chr_drv/pty.cc = get_tty_queue(&from->write_q);
c47kernel/chr_drv/pty.cput_tty_queue(c, &to->read_q);
c66kernel/chr_drv/tty_io.cvoid put_tty_queue(char c, struct tty_queue * queue)
c74kernel/chr_drv/tty_io.cqueue->buf[queue->head] = c;
c372kernel/chr_drv/tty_io.cint c;
c388kernel/chr_drv/tty_io.cc = LEFT(&tty->secondary);
c389kernel/chr_drv/tty_io.cif (tty->throttle && (c < SQ_THRESHOLD_LW)
c392kernel/chr_drv/tty_io.cif (c == 0)
c394kernel/chr_drv/tty_io.cc = get_tty_queue(&tty->read_q);
c395kernel/chr_drv/tty_io.cif (c < 0)
c398kernel/chr_drv/tty_io.cc &= 0x7f;
c399kernel/chr_drv/tty_io.cif (c==13) {
c401kernel/chr_drv/tty_io.cc=10;
c404kernel/chr_drv/tty_io.c} else if (c==10 && I_NLCR(tty))
c405kernel/chr_drv/tty_io.cc=13;
c407kernel/chr_drv/tty_io.cc=tolower(c);
c410kernel/chr_drv/tty_io.c(c==KILL_CHAR(tty))) {
c413kernel/chr_drv/tty_io.c(c=LAST(&tty->secondary))==10 ||
c415kernel/chr_drv/tty_io.c(c==EOF_CHAR(tty))))) {
c417kernel/chr_drv/tty_io.cif (c<32) {
c431kernel/chr_drv/tty_io.c(c==ERASE_CHAR(tty))) {
c433kernel/chr_drv/tty_io.c(c=LAST(&tty->secondary))==10 ||
c435kernel/chr_drv/tty_io.c(c==EOF_CHAR(tty))))
c438kernel/chr_drv/tty_io.cif (c<32) {
c453kernel/chr_drv/tty_io.c(c==STOP_CHAR(tty))) {
c461kernel/chr_drv/tty_io.c(c==START_CHAR(tty)))) {
c470kernel/chr_drv/tty_io.c(c==INTR_CHAR(tty))) {
c476kernel/chr_drv/tty_io.c(c==QUIT_CHAR(tty))) {
c482kernel/chr_drv/tty_io.c(c==SUSPEND_CHAR(tty))) {
c488kernel/chr_drv/tty_io.cif (c==10 || (EOF_CHAR(tty) != __DISABLED_CHAR &&
c489kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)))
c491kernel/chr_drv/tty_io.cif ((c==10) && (L_ECHO(tty) || (L_CANON(tty) && L_ECHONL(tty)))) {
c495kernel/chr_drv/tty_io.cif (c<32 && L_ECHOCTL(tty)) {
c497kernel/chr_drv/tty_io.cput_tty_queue(c+64, &tty->write_q);
c499kernel/chr_drv/tty_io.cput_tty_queue(c, &tty->write_q);
c501kernel/chr_drv/tty_io.cput_tty_queue(c, &tty->secondary);
c537kernel/chr_drv/tty_io.cint c;
c592kernel/chr_drv/tty_io.cwhile (nr > 0 && ((c = get_tty_queue(&tty->secondary)) >= 0)) {
c594kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)) || c==10)
c597kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)) && L_CANON(tty))
c599kernel/chr_drv/tty_io.cput_fs_byte(c,b++);
c603kernel/chr_drv/tty_io.cif (c==10 && L_CANON(tty))
c692kernel/chr_drv/tty_io.cchar c, *b=buf;
c718kernel/chr_drv/tty_io.cc=get_fs_byte(b);
c720kernel/chr_drv/tty_io.cif (c=='\r' && O_CRNL(tty))
c721kernel/chr_drv/tty_io.cc='\n';
c722kernel/chr_drv/tty_io.celse if (c=='\n' && O_NLRET(tty))
c723kernel/chr_drv/tty_io.cc='\r';
c724kernel/chr_drv/tty_io.cif (c=='\n' && O_NLCR(tty) &&
c730kernel/chr_drv/tty_io.cc=toupper(c);
c734kernel/chr_drv/tty_io.cput_tty_queue(c,&tty->write_q);
c93kernel/chr_drv/tty_ioctl.cchar *c, *d;
c101kernel/chr_drv/tty_ioctl.cc = (char *)(*p);
c104kernel/chr_drv/tty_ioctl.cput_fs_byte(*c++, d++);
c224kernel/chr_drv/tty_ioctl.cchar c, * tmp;
c231kernel/chr_drv/tty_ioctl.cc = get_fs_byte(i + (char *) ws);
c232kernel/chr_drv/tty_ioctl.cif (c == *tmp)
c235kernel/chr_drv/tty_ioctl.c*tmp = c;
c29kernel/printk.cchar c;
c68kernel/printk.cc = *((char *) log_page+log_start);
c72kernel/printk.cput_fs_byte(c,buf);
c101kernel/sched.cint i,next,c;
c120kernel/sched.cc = -1;
c127kernel/sched.cif ((*p)->state == TASK_RUNNING && (*p)->counter > c)
c128kernel/sched.cc = (*p)->counter, next = i;
c130kernel/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;
c106net/tcp/sock.c#define swap(a,b) {unsigned long c; c=a; a=b; b=c;}
c101net/tcp/tcp.c#define swap(a,b) {unsigned long c; c=a; a=b; b=c;}
c86tools/build.cint i,c,id;
c156tools/build.cfor (i=0 ; (c=read(id,buf,sizeof buf))>0 ; i+=c )
c157tools/build.cif (write(1,buf,c)!=c)
c164tools/build.cfor (c=0 ; c<sizeof(buf) ; c++)
c165tools/build.cbuf[c] = '\0';
c167tools/build.cc = SETUP_SECTS*512-i;
c168tools/build.cif (c > sizeof(buf))
c169tools/build.cc = sizeof(buf);
c170tools/build.cif (write(1,buf,c) != c)
c172tools/build.ci += c;
c181tools/build.cfor (i=0 ; (c=read(id,buf,sizeof buf))>0 ; i+=c )
c182tools/build.cif (write(1,buf,c)!=c)