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));
c116fs/proc/array.cchar c;
c125fs/proc/array.cc = *(char *) addr;
c126fs/proc/array.cif (!c)
c129fs/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)
c130include/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;
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\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 ))
c894kernel/chr_drv/console.cint c;
c903kernel/chr_drv/console.cwhile (!tty->stopped &&  (c = get_tty_queue(&tty->write_q)) >= 0) {
c904kernel/chr_drv/console.cif (state == ESnormal && translate[c]) {
c911kernel/chr_drv/console.cc = translate[c];
c912kernel/chr_drv/console.c*(char *) pos = c;
c927kernel/chr_drv/console.cswitch (c) {
c974kernel/chr_drv/console.cswitch (c) {
c1025kernel/chr_drv/console.cif (c == '[') { /* Function key */
c1029kernel/chr_drv/console.cques = (c=='?');
c1033kernel/chr_drv/console.cif (c==';' && npar<NPAR-1) {
c1036kernel/chr_drv/console.c} else if (c>='0' && c<='9') {
c1038kernel/chr_drv/console.cpar[npar] += c-'0';
c1043kernel/chr_drv/console.cswitch(c) {
c1062kernel/chr_drv/console.cswitch(c) {
c1165kernel/chr_drv/console.cif (c == '8') {
c1175kernel/chr_drv/console.cif (c == '0')
c1177kernel/chr_drv/console.celse if (c == 'B')
c1179kernel/chr_drv/console.celse if (c == 'U')
c1186kernel/chr_drv/console.cif (c == '0')
c1188kernel/chr_drv/console.celse if (c == 'B')
c1190kernel/chr_drv/console.celse if (c == 'U')
c1220kernel/chr_drv/console.cvoid * memsetw(void * s,unsigned short c,int count)
c1225kernel/chr_drv/console.c::"a" (c),"D" (s),"c" (count)
c1454kernel/chr_drv/console.cchar c;
c1458kernel/chr_drv/console.cwhile ((c = *(b++)) != 0) {
c1459kernel/chr_drv/console.cif (c == 10 || c == 13 || need_wrap) {
c1460kernel/chr_drv/console.cif (c != 13)
c1463kernel/chr_drv/console.cif (c == 10 || c == 13)
c1466kernel/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++);
c38kernel/chr_drv/pty.cint c;
c47kernel/chr_drv/pty.cc = get_tty_queue(&from->write_q);
c48kernel/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;
c430kernel/chr_drv/tty_io.cint c;
c446kernel/chr_drv/tty_io.cc = LEFT(&tty->secondary);
c447kernel/chr_drv/tty_io.cif (tty->throttle && (c < SQ_THRESHOLD_LW)
c450kernel/chr_drv/tty_io.cif (c == 0)
c452kernel/chr_drv/tty_io.cc = get_tty_queue(&tty->read_q);
c453kernel/chr_drv/tty_io.cif (c < 0)
c456kernel/chr_drv/tty_io.cc &= 0x7f;
c457kernel/chr_drv/tty_io.cif (c==13) {
c459kernel/chr_drv/tty_io.cc=10;
c462kernel/chr_drv/tty_io.c} else if (c==10 && I_NLCR(tty))
c463kernel/chr_drv/tty_io.cc=13;
c465kernel/chr_drv/tty_io.cc=tolower(c);
c468kernel/chr_drv/tty_io.c(c==KILL_CHAR(tty))) {
c471kernel/chr_drv/tty_io.c(c=LAST(&tty->secondary))==10 ||
c473kernel/chr_drv/tty_io.c(c==EOF_CHAR(tty))))) {
c475kernel/chr_drv/tty_io.cif (c<32) {
c489kernel/chr_drv/tty_io.c(c==ERASE_CHAR(tty))) {
c491kernel/chr_drv/tty_io.c(c=LAST(&tty->secondary))==10 ||
c493kernel/chr_drv/tty_io.c(c==EOF_CHAR(tty))))
c496kernel/chr_drv/tty_io.cif (c<32) {
c511kernel/chr_drv/tty_io.c(c==STOP_CHAR(tty))) {
c519kernel/chr_drv/tty_io.c(c==START_CHAR(tty)))) {
c528kernel/chr_drv/tty_io.c(c==INTR_CHAR(tty))) {
c534kernel/chr_drv/tty_io.c(c==QUIT_CHAR(tty))) {
c540kernel/chr_drv/tty_io.c(c==SUSPEND_CHAR(tty))) {
c546kernel/chr_drv/tty_io.cif (c==10 || (EOF_CHAR(tty) != __DISABLED_CHAR &&
c547kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)))
c549kernel/chr_drv/tty_io.cif ((c==10) && (L_ECHO(tty) || (L_CANON(tty) && L_ECHONL(tty)))) {
c553kernel/chr_drv/tty_io.cif (c<32 && L_ECHOCTL(tty)) {
c555kernel/chr_drv/tty_io.cput_tty_queue(c+64, &tty->write_q);
c557kernel/chr_drv/tty_io.cput_tty_queue(c, &tty->write_q);
c559kernel/chr_drv/tty_io.cput_tty_queue(c, &tty->secondary);
c595kernel/chr_drv/tty_io.cint c;
c650kernel/chr_drv/tty_io.cwhile (nr > 0 && ((c = get_tty_queue(&tty->secondary)) >= 0)) {
c652kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)) || c==10)
c655kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)) && L_CANON(tty))
c657kernel/chr_drv/tty_io.cput_fs_byte(c,b++);
c661kernel/chr_drv/tty_io.cif (c==10 && L_CANON(tty))
c750kernel/chr_drv/tty_io.cchar c, *b=buf;
c776kernel/chr_drv/tty_io.cc=get_fs_byte(b);
c778kernel/chr_drv/tty_io.cif (c=='\r' && O_CRNL(tty))
c779kernel/chr_drv/tty_io.cc='\n';
c780kernel/chr_drv/tty_io.celse if (c=='\n' && O_NLRET(tty))
c781kernel/chr_drv/tty_io.cc='\r';
c782kernel/chr_drv/tty_io.cif (c=='\n' && O_NLCR(tty) &&
c788kernel/chr_drv/tty_io.cc=toupper(c);
c792kernel/chr_drv/tty_io.cput_tty_queue(c,&tty->write_q);
c104kernel/chr_drv/tty_ioctl.cchar *c, *d;
c112kernel/chr_drv/tty_ioctl.cc = (char *)(*p);
c115kernel/chr_drv/tty_ioctl.cput_fs_byte(*c++, d++);
c239kernel/chr_drv/tty_ioctl.cchar c, * tmp;
c246kernel/chr_drv/tty_ioctl.cc = get_fs_byte(i + (char *) ws);
c247kernel/chr_drv/tty_ioctl.cif (c == *tmp)
c250kernel/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);
c102kernel/sched.cint i,next,c;
c121kernel/sched.cc = -1;
c128kernel/sched.cif ((*p)->state == TASK_RUNNING && (*p)->counter > c)
c129kernel/sched.cc = (*p)->counter, next = i;
c131kernel/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;}
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)