taglinefilesource code
c66fs/ext/dir.cchar c;
c92fs/ext/dir.cif (c = de->name[i])
c93fs/ext/dir.cput_fs_byte(c,i+dirent->d_name);
c154fs/ext/file.cint written,c;
c182fs/ext/file.cc = BLOCK_SIZE - (pos % BLOCK_SIZE);
c183fs/ext/file.cif (c > count-written)
c184fs/ext/file.cc = count-written;
c185fs/ext/file.cif (c != BLOCK_SIZE && !bh->b_uptodate) {
c196fs/ext/file.cpos += c;
c201fs/ext/file.cwritten += c;
c202fs/ext/file.cmemcpy_fromfs(p,buf,c);
c203fs/ext/file.cbuf += c;
c618fs/ext/namei.cchar c;
c635fs/ext/namei.cwhile (i < 1023 && (c=get_fs_byte(symname++)))
c636fs/ext/namei.cname_block->b_data[i++] = c;
c92fs/ext/symlink.cchar c;
c105fs/ext/symlink.cwhile (i<buflen && (c = bh->b_data[i])) {
c107fs/ext/symlink.cput_fs_byte(c,buffer++);
c59fs/minix/dir.cchar c;
c80fs/minix/dir.cif (c = de->name[i])
c81fs/minix/dir.cput_fs_byte(c,i+dirent->d_name);
c148fs/minix/file.cint written,c;
c176fs/minix/file.cc = BLOCK_SIZE - (pos % BLOCK_SIZE);
c177fs/minix/file.cif (c > count-written)
c178fs/minix/file.cc = count-written;
c179fs/minix/file.cif (c != BLOCK_SIZE && !bh->b_uptodate) {
c190fs/minix/file.cpos += c;
c195fs/minix/file.cwritten += c;
c196fs/minix/file.cmemcpy_fromfs(p,buf,c);
c197fs/minix/file.cbuf += c;
c497fs/minix/namei.cchar c;
c514fs/minix/namei.cwhile (i < 1023 && (c=get_fs_byte(symname++)))
c515fs/minix/namei.cname_block->b_data[i++] = c;
c86fs/minix/symlink.cchar c;
c99fs/minix/symlink.cwhile (i<buflen && (c = bh->b_data[i])) {
c101fs/minix/symlink.cput_fs_byte(c,buffer++);
c58fs/msdos/dir.cchar c,*walk;
c82fs/msdos/dir.cif (!(c = de->name[i])) break;
c83fs/msdos/dir.cif (c >= 'A' && c <= 'Z') c += 32;
c84fs/msdos/dir.cif (c != ' ') last = i+1;
c85fs/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.cput_fs_byte(c,i+dirent->d_name);
c96fs/msdos/dir.cif (c != ' ') last = i;
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;
c115fs/namei.cchar c;
c125fs/namei.cif ((c=get_fs_byte(pathname))=='/') {
c133fs/namei.cfor(len=0;(c=get_fs_byte(pathname++))&&(c!='/');len++)
c135fs/namei.cif (!c)
c54fs/proc/fd.cunsigned int ino, pid, fd, c;
c87fs/proc/fd.cc = get_fs_byte(name) - '0';
c89fs/proc/fd.cif (c > 9) {
c94fs/proc/fd.cfd += c;
c54fs/proc/root.cunsigned int pid, c;
c71fs/proc/root.cc = get_fs_byte(name) - '0';
c73fs/proc/root.cif (c > 9) {
c78fs/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)
c25include/linux/ioctl.h#define _IO(c,d)  (IOC_VOID | (d)<<16) | c) /* param encoded */
c29include/linux/ioctl.h#define _IOW(c,d,t)  (IOC_IN | ((sizeof(t)<<16) & IOCSIZE_MASK) | \
c30include/linux/ioctl.h(c<<8) | d)
c31include/linux/ioctl.h#define _IOR(c,d,t)  (IOC_OUT | ((sizeof(t)<<16) & IOCSIZE_MASK) | \
c32include/linux/ioctl.h(c<<8) | d)
c34include/linux/ioctl.h#define _IOWR(c,d,t)  (IOC_INOUT | (sizeof(t)<<16) & IOCSIZE_MASK) | \
c35include/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)
c121include/linux/tty.hextern void put_tty_queue(char c, struct tty_queue * queue);
c170include/linux/unistd.h#define _syscall3(type,name,atype,a,btype,b,ctype,c) \
c171include/linux/unistd.htype name(atype a,btype b,ctype c) \
c177include/linux/unistd.h: "0" (__NR_##name),"g" ((long)(a)),"c" ((long)(b)),"d" ((long)(c)):"bx"); \
c184include/linux/unistd.h#define _syscall4(type,name,atype,a,btype,b,ctype,c,dtype,d) \
c185include/linux/unistd.htype name (atype a, btype b, ctype c, dtype d) \
c192include/linux/unistd.h"d" ((long)(c)),"S" ((long)(d))); \
c199include/linux/unistd.h#define _syscall5(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e) \
c200include/linux/unistd.htype name (atype a,btype b,ctype c,dtype d,etype e) \
c207include/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 ))
c905kernel/chr_drv/console.cint c;
c914kernel/chr_drv/console.cwhile (!tty->stopped &&  (c = get_tty_queue(&tty->write_q)) >= 0) {
c915kernel/chr_drv/console.cif (state == ESnormal && translate[c]) {
c922kernel/chr_drv/console.cc = translate[c];
c923kernel/chr_drv/console.c*(char *) pos = c;
c938kernel/chr_drv/console.cswitch (c) {
c985kernel/chr_drv/console.cswitch (c) {
c1036kernel/chr_drv/console.cif (c == '[') { /* Function key */
c1040kernel/chr_drv/console.cif (ques=(c=='?'))
c1043kernel/chr_drv/console.cif (c==';' && npar<NPAR-1) {
c1046kernel/chr_drv/console.c} else if (c>='0' && c<='9') {
c1048kernel/chr_drv/console.cpar[npar] += c-'0';
c1053kernel/chr_drv/console.cswitch(c) {
c1072kernel/chr_drv/console.cswitch(c) {
c1175kernel/chr_drv/console.cif (c == '8') {
c1185kernel/chr_drv/console.cif (c == '0')
c1187kernel/chr_drv/console.celse if (c == 'B')
c1189kernel/chr_drv/console.celse if (c == 'U')
c1196kernel/chr_drv/console.cif (c == '0')
c1198kernel/chr_drv/console.celse if (c == 'B')
c1200kernel/chr_drv/console.celse if (c == 'U')
c1230kernel/chr_drv/console.cvoid * memsetw(void * s,unsigned short c,int count)
c1235kernel/chr_drv/console.c::"a" (c),"D" (s),"c" (count)
c1476kernel/chr_drv/console.cchar c;
c1480kernel/chr_drv/console.cwhile (c = *(b++)) {
c1481kernel/chr_drv/console.cif (c == 10 || c == 13 || need_wrap) {
c1482kernel/chr_drv/console.cif (c != 13)
c1485kernel/chr_drv/console.cif (c == 10 || c == 13)
c1488kernel/chr_drv/console.c*(char *) pos = c;
c50kernel/chr_drv/lp.cchar c, *temp = buf;
c54kernel/chr_drv/lp.cc = get_fs_byte(temp);
c55kernel/chr_drv/lp.cretval = lp_char(c, minor);
c227kernel/chr_drv/psaux.cunsigned char c;
c243kernel/chr_drv/psaux.cc = get_from_queue();
c244kernel/chr_drv/psaux.cput_fs_byte(c, buffer++);
c39kernel/chr_drv/pty.cint c;
c48kernel/chr_drv/pty.cc = get_tty_queue(&from->write_q);
c49kernel/chr_drv/pty.cput_tty_queue(c, &to->read_q);
c57kernel/chr_drv/tty_io.cvoid put_tty_queue(char c, struct tty_queue * queue)
c65kernel/chr_drv/tty_io.cqueue->buf[queue->head] = c;
c123kernel/chr_drv/tty_io.cint c;
c139kernel/chr_drv/tty_io.cc = LEFT(&tty->secondary);
c140kernel/chr_drv/tty_io.cif (tty->throttle && (c < SQ_THRESHOLD_LW)
c143kernel/chr_drv/tty_io.cif (c == 0)
c145kernel/chr_drv/tty_io.cc = get_tty_queue(&tty->read_q);
c146kernel/chr_drv/tty_io.cif (c < 0)
c149kernel/chr_drv/tty_io.cc &= 0x7f;
c150kernel/chr_drv/tty_io.cif (c==13) {
c152kernel/chr_drv/tty_io.cc=10;
c155kernel/chr_drv/tty_io.c} else if (c==10 && I_NLCR(tty))
c156kernel/chr_drv/tty_io.cc=13;
c158kernel/chr_drv/tty_io.cc=tolower(c);
c161kernel/chr_drv/tty_io.c(c==KILL_CHAR(tty))) {
c164kernel/chr_drv/tty_io.c(c=LAST(&tty->secondary))==10 ||
c166kernel/chr_drv/tty_io.c(c==EOF_CHAR(tty))))) {
c168kernel/chr_drv/tty_io.cif (c<32) {
c182kernel/chr_drv/tty_io.c(c==ERASE_CHAR(tty))) {
c184kernel/chr_drv/tty_io.c(c=LAST(&tty->secondary))==10 ||
c186kernel/chr_drv/tty_io.c(c==EOF_CHAR(tty))))
c189kernel/chr_drv/tty_io.cif (c<32) {
c204kernel/chr_drv/tty_io.c(c==STOP_CHAR(tty))) {
c212kernel/chr_drv/tty_io.c(c==START_CHAR(tty)))) {
c221kernel/chr_drv/tty_io.c(c==INTR_CHAR(tty))) {
c227kernel/chr_drv/tty_io.c(c==QUIT_CHAR(tty))) {
c233kernel/chr_drv/tty_io.c(c==SUSPEND_CHAR(tty))) {
c239kernel/chr_drv/tty_io.cif (c==10 || (EOF_CHAR(tty) != __DISABLED_CHAR &&
c240kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)))
c242kernel/chr_drv/tty_io.cif ((c==10) && (L_ECHO(tty) || (L_CANON(tty) && L_ECHONL(tty)))) {
c246kernel/chr_drv/tty_io.cif (c<32 && L_ECHOCTL(tty)) {
c248kernel/chr_drv/tty_io.cput_tty_queue(c+64, &tty->write_q);
c250kernel/chr_drv/tty_io.cput_tty_queue(c, &tty->write_q);
c252kernel/chr_drv/tty_io.cput_tty_queue(c, &tty->secondary);
c286kernel/chr_drv/tty_io.cint c;
c355kernel/chr_drv/tty_io.cwhile (nr > 0 && ((c = get_tty_queue(&tty->secondary)) >= 0)) {
c357kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)) || c==10)
c360kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)) && L_CANON(tty))
c362kernel/chr_drv/tty_io.cput_fs_byte(c,b++);
c366kernel/chr_drv/tty_io.cif (c==10 && L_CANON(tty))
c452kernel/chr_drv/tty_io.cchar c, *b=buf;
c493kernel/chr_drv/tty_io.cc=get_fs_byte(b);
c495kernel/chr_drv/tty_io.cif (c=='\r' && O_CRNL(tty))
c496kernel/chr_drv/tty_io.cc='\n';
c497kernel/chr_drv/tty_io.celse if (c=='\n' && O_NLRET(tty))
c498kernel/chr_drv/tty_io.cc='\r';
c499kernel/chr_drv/tty_io.cif (c=='\n' && O_NLCR(tty) &&
c505kernel/chr_drv/tty_io.cc=toupper(c);
c509kernel/chr_drv/tty_io.cput_tty_queue(c,&tty->write_q);
c87kernel/chr_drv/tty_ioctl.cchar *c, *d;
c95kernel/chr_drv/tty_ioctl.cc = (char *)(*p);
c98kernel/chr_drv/tty_ioctl.cput_fs_byte(*c++, d++);
c218kernel/chr_drv/tty_ioctl.cchar c, * tmp;
c225kernel/chr_drv/tty_ioctl.cc = get_fs_byte(i + (char *) ws);
c226kernel/chr_drv/tty_ioctl.cif (c == *tmp)
c229kernel/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);
c100kernel/sched.cint i,next,c;
c119kernel/sched.cc = -1;
c126kernel/sched.cif ((*p)->state == TASK_RUNNING && (*p)->counter > c)
c127kernel/sched.cc = (*p)->counter, next = i;
c129kernel/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;
c61net/tcp/sock.c#define swap(a,b) {unsigned long c; c=a; a=b; b=c;}
c56net/tcp/tcp.c#define swap(a,b) {unsigned long c; c=a; a=b; b=c;}
c59tools/build.cint i,c,id;
c129tools/build.cfor (i=0 ; (c=read(id,buf,sizeof buf))>0 ; i+=c )
c130tools/build.cif (write(1,buf,c)!=c)
c137tools/build.cfor (c=0 ; c<sizeof(buf) ; c++)
c138tools/build.cbuf[c] = '\0';
c140tools/build.cc = SETUP_SECTS*512-i;
c141tools/build.cif (c > sizeof(buf))
c142tools/build.cc = sizeof(buf);
c143tools/build.cif (write(1,buf,c) != c)
c145tools/build.ci += c;
c154tools/build.cfor (i=0 ; (c=read(id,buf,sizeof buf))>0 ; i+=c )
c155tools/build.cif (write(1,buf,c)!=c)