taglinefilesource code
c66fs/ext/dir.cchar c;
c98fs/ext/dir.cif ((c = de->name[i]) != 0)
c99fs/ext/dir.cput_fs_byte(c,i+dirent->d_name);
c194fs/ext/file.cint written,c;
c222fs/ext/file.cc = BLOCK_SIZE - (pos % BLOCK_SIZE);
c223fs/ext/file.cif (c > count-written)
c224fs/ext/file.cc = count-written;
c225fs/ext/file.cif (c != BLOCK_SIZE && !bh->b_uptodate) {
c236fs/ext/file.cpos += c;
c241fs/ext/file.cwritten += c;
c242fs/ext/file.cmemcpy_fromfs(p,buf,c);
c243fs/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;
c92fs/ext/symlink.cchar c;
c105fs/ext/symlink.cwhile (i<buflen && (c = bh->b_data[i])) {
c107fs/ext/symlink.cput_fs_byte(c,buffer++);
c65fs/isofs/dir.cchar c = 0;
c176fs/isofs/dir.cif (!(c = dpnt[i])) break;
c177fs/isofs/dir.cif (c >= 'A' && c <= 'Z') c |= 0x20;  /* lower case */
c178fs/isofs/dir.cif (c == ';' && i == dlen-2 && de->name[i+1] == '1') 
c180fs/isofs/dir.cif (c == ';') c = '.';  /* Convert remaining ';' to '.' */
c181fs/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;
c86fs/isofs/symlink.cchar c;
c102fs/isofs/symlink.cwhile (i<buflen && (c = pnt[i])) {
c104fs/isofs/symlink.cput_fs_byte(c,buffer++);
c59fs/minix/dir.cchar c;
c80fs/minix/dir.cif ((c = de->name[i]) != 0)
c81fs/minix/dir.cput_fs_byte(c,i+dirent->d_name);
c188fs/minix/file.cint written,c;
c216fs/minix/file.cc = BLOCK_SIZE - (pos % BLOCK_SIZE);
c217fs/minix/file.cif (c > count-written)
c218fs/minix/file.cc = count-written;
c219fs/minix/file.cif (c != BLOCK_SIZE && !bh->b_uptodate) {
c230fs/minix/file.cpos += c;
c235fs/minix/file.cwritten += c;
c236fs/minix/file.cmemcpy_fromfs(p,buf,c);
c237fs/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;
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);
c91fs/msdos/dir.cif (!(c = de->ext[i2])) break;
c92fs/msdos/dir.cif (c >= 'A' && c <= 'Z') c += 32;
c93fs/msdos/dir.cif (c != ' ') last = i+1;
c94fs/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;
c116fs/namei.cchar c;
c126fs/namei.cif ((c=get_fs_byte(pathname))=='/') {
c134fs/namei.cfor(len=0;(c=get_fs_byte(pathname++))&&(c!='/');len++)
c136fs/namei.cif (!c)
c479fs/nfs/dir.cint c;
c493fs/nfs/dir.cfor (i = 0; i < NFS_MAXPATHLEN && (c = get_fs_byte(symname++)); i++)
c494fs/nfs/dir.csymfilename[i] = c;
c89fs/nfs/symlink.cchar c;
c106fs/nfs/symlink.cfor (i = 0; i < buflen && (c = res[i]); i++)
c107fs/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));
c99fs/proc/array.cchar c;
c108fs/proc/array.cc = *(char *) addr;
c109fs/proc/array.cif (!c)
c112fs/proc/array.cbuffer[size++] = 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;
c66fs/proc/root.cunsigned int pid, c;
c90fs/proc/root.cc = get_fs_byte(name) - '0';
c92fs/proc/root.cif (c > 9) {
c97fs/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)
c124include/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 ))
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)
c1458kernel/chr_drv/console.cchar c;
c1462kernel/chr_drv/console.cwhile ((c = *(b++)) != 0) {
c1463kernel/chr_drv/console.cif (c == 10 || c == 13 || need_wrap) {
c1464kernel/chr_drv/console.cif (c != 13)
c1467kernel/chr_drv/console.cif (c == 10 || c == 13)
c1470kernel/chr_drv/console.c*(char *) pos = c;
c72kernel/chr_drv/keyboard.cstatic inline void send_cmd(unsigned char c)
c75kernel/chr_drv/keyboard.coutb(c,0x64);
c74kernel/chr_drv/lp.cchar c, *temp = buf;
c86kernel/chr_drv/lp.cc = get_fs_byte(temp);
c87kernel/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);
c340kernel/chr_drv/serial.cint c, count = 0;
c356kernel/chr_drv/serial.cc = queue->buf[queue->tail];
c359kernel/chr_drv/serial.coutb(c, UART_TX + port);
c64kernel/chr_drv/tty_io.cvoid put_tty_queue(char c, struct tty_queue * queue)
c72kernel/chr_drv/tty_io.cqueue->buf[queue->head] = c;
c345kernel/chr_drv/tty_io.cint c;
c361kernel/chr_drv/tty_io.cc = LEFT(&tty->secondary);
c362kernel/chr_drv/tty_io.cif (tty->throttle && (c < SQ_THRESHOLD_LW)
c365kernel/chr_drv/tty_io.cif (c == 0)
c367kernel/chr_drv/tty_io.cc = get_tty_queue(&tty->read_q);
c368kernel/chr_drv/tty_io.cif (c < 0)
c371kernel/chr_drv/tty_io.cc &= 0x7f;
c372kernel/chr_drv/tty_io.cif (c==13) {
c374kernel/chr_drv/tty_io.cc=10;
c377kernel/chr_drv/tty_io.c} else if (c==10 && I_NLCR(tty))
c378kernel/chr_drv/tty_io.cc=13;
c380kernel/chr_drv/tty_io.cc=tolower(c);
c383kernel/chr_drv/tty_io.c(c==KILL_CHAR(tty))) {
c386kernel/chr_drv/tty_io.c(c=LAST(&tty->secondary))==10 ||
c388kernel/chr_drv/tty_io.c(c==EOF_CHAR(tty))))) {
c390kernel/chr_drv/tty_io.cif (c<32) {
c404kernel/chr_drv/tty_io.c(c==ERASE_CHAR(tty))) {
c406kernel/chr_drv/tty_io.c(c=LAST(&tty->secondary))==10 ||
c408kernel/chr_drv/tty_io.c(c==EOF_CHAR(tty))))
c411kernel/chr_drv/tty_io.cif (c<32) {
c426kernel/chr_drv/tty_io.c(c==STOP_CHAR(tty))) {
c434kernel/chr_drv/tty_io.c(c==START_CHAR(tty)))) {
c443kernel/chr_drv/tty_io.c(c==INTR_CHAR(tty))) {
c449kernel/chr_drv/tty_io.c(c==QUIT_CHAR(tty))) {
c455kernel/chr_drv/tty_io.c(c==SUSPEND_CHAR(tty))) {
c461kernel/chr_drv/tty_io.cif (c==10 || (EOF_CHAR(tty) != __DISABLED_CHAR &&
c462kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)))
c464kernel/chr_drv/tty_io.cif ((c==10) && (L_ECHO(tty) || (L_CANON(tty) && L_ECHONL(tty)))) {
c468kernel/chr_drv/tty_io.cif (c<32 && L_ECHOCTL(tty)) {
c470kernel/chr_drv/tty_io.cput_tty_queue(c+64, &tty->write_q);
c472kernel/chr_drv/tty_io.cput_tty_queue(c, &tty->write_q);
c474kernel/chr_drv/tty_io.cput_tty_queue(c, &tty->secondary);
c510kernel/chr_drv/tty_io.cint c;
c565kernel/chr_drv/tty_io.cwhile (nr > 0 && ((c = get_tty_queue(&tty->secondary)) >= 0)) {
c567kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)) || c==10)
c570kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)) && L_CANON(tty))
c572kernel/chr_drv/tty_io.cput_fs_byte(c,b++);
c576kernel/chr_drv/tty_io.cif (c==10 && L_CANON(tty))
c665kernel/chr_drv/tty_io.cchar c, *b=buf;
c691kernel/chr_drv/tty_io.cc=get_fs_byte(b);
c693kernel/chr_drv/tty_io.cif (c=='\r' && O_CRNL(tty))
c694kernel/chr_drv/tty_io.cc='\n';
c695kernel/chr_drv/tty_io.celse if (c=='\n' && O_NLRET(tty))
c696kernel/chr_drv/tty_io.cc='\r';
c697kernel/chr_drv/tty_io.cif (c=='\n' && O_NLCR(tty) &&
c703kernel/chr_drv/tty_io.cc=toupper(c);
c707kernel/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)