taglinefilesource code
c60fs/ext/dir.cchar c;
c86fs/ext/dir.cif (c = de->name[i])
c87fs/ext/dir.cput_fs_byte(c,i+dirent->d_name);
c160fs/ext/file.cint written,c;
c188fs/ext/file.cc = BLOCK_SIZE - (pos % BLOCK_SIZE);
c189fs/ext/file.cif (c > count-written)
c190fs/ext/file.cc = count-written;
c191fs/ext/file.cif (c != BLOCK_SIZE && !bh->b_uptodate) {
c202fs/ext/file.cpos += c;
c207fs/ext/file.cwritten += c;
c208fs/ext/file.cmemcpy_fromfs(p,buf,c);
c209fs/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++);
c53fs/minix/dir.cchar c;
c74fs/minix/dir.cif (c = de->name[i])
c75fs/minix/dir.cput_fs_byte(c,i+dirent->d_name);
c160fs/minix/file.cint written,c;
c188fs/minix/file.cc = BLOCK_SIZE - (pos % BLOCK_SIZE);
c189fs/minix/file.cif (c > count-written)
c190fs/minix/file.cc = count-written;
c191fs/minix/file.cif (c != BLOCK_SIZE && !bh->b_uptodate) {
c202fs/minix/file.cpos += c;
c207fs/minix/file.cwritten += c;
c208fs/minix/file.cmemcpy_fromfs(p,buf,c);
c209fs/minix/file.cbuf += c;
c482fs/minix/namei.cchar c;
c499fs/minix/namei.cwhile (i < 1023 && (c=get_fs_byte(symname++)))
c500fs/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++);
c71fs/msdos/dir.cchar c,*walk;
c95fs/msdos/dir.cif (!(c = de->name[i])) break;
c96fs/msdos/dir.cif (c >= 'A' && c <= 'Z') c += 32;
c97fs/msdos/dir.cif (c != ' ') last = i+1;
c98fs/msdos/dir.cput_fs_byte(c,i+dirent->d_name);
c105fs/msdos/dir.cif (!(c = de->ext[i2])) break;
c106fs/msdos/dir.cif (c >= 'A' && c <= 'Z') c += 32;
c107fs/msdos/dir.cput_fs_byte(c,i+dirent->d_name);
c109fs/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)
c53fs/proc/fd.cunsigned int ino, pid, fd, c;
c85fs/proc/fd.cc = get_fs_byte(name) - '0';
c87fs/proc/fd.cif (c > 9) {
c92fs/proc/fd.cfd += c;
c53fs/proc/root.cunsigned int pid, c;
c70fs/proc/root.cc = get_fs_byte(name) - '0';
c72fs/proc/root.cif (c > 9) {
c77fs/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)
c121include/linux/string.hextern inline char * strchr(const char * s,char c)
c134include/linux/string.h:"=a" (__res):"S" (s),"0" (c):"si");
c138include/linux/string.hextern inline char * strrchr(const char * s,char c)
c150include/linux/string.h:"=d" (__res):"0" (0),"S" (s),"a" (c):"ax","si");
c373include/linux/string.hextern inline void * memchr(const void * cs,char c,size_t count)
c384include/linux/string.h:"=D" (__res):"a" (c),"D" (cs),"c" (count)
c389include/linux/string.hextern inline void * memset(void * s,char c,size_t count)
c394include/linux/string.h::"a" (c),"D" (s),"c" (count)
c120include/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))); \
c161kernel/blk_drv/hd.cunsigned char c;
c164kernel/blk_drv/hd.cc = inb_p(HD_STATUS);
c165kernel/blk_drv/hd.cc &= (BUSY_STAT | READY_STAT | SEEK_STAT);
c166kernel/blk_drv/hd.cif (c == (READY_STAT | SEEK_STAT))
c169kernel/blk_drv/hd.cprintk("HD controller times out, status = 0x%02x\n\r",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;
c53kernel/chr_drv/lp.cchar c, *temp = buf;
c57kernel/chr_drv/lp.cc = get_fs_byte(temp++);
c58kernel/chr_drv/lp.cretval = lp_char(c, minor);
c154kernel/chr_drv/psaux.cunsigned char c;
c164kernel/chr_drv/psaux.cc = get_from_queue();
c165kernel/chr_drv/psaux.cput_fs_byte(c, buffer++);
c56kernel/chr_drv/pty.cint c;
c65kernel/chr_drv/pty.cc = get_tty_queue(&from->write_q);
c66kernel/chr_drv/pty.cput_tty_queue(c, &to->read_q);
c127kernel/chr_drv/serial.cint c, count = 0;
c143kernel/chr_drv/serial.cc = queue->buf[queue->tail];
c146kernel/chr_drv/serial.coutb(c, UART_TX + port);
c57kernel/chr_drv/tty_io.cvoid inline 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))) {
c211kernel/chr_drv/tty_io.c(c==START_CHAR(tty))) {
c220kernel/chr_drv/tty_io.c(c==INTR_CHAR(tty))) {
c226kernel/chr_drv/tty_io.c(c==QUIT_CHAR(tty))) {
c232kernel/chr_drv/tty_io.c(c==SUSPEND_CHAR(tty))) {
c238kernel/chr_drv/tty_io.cif (c==10 || (EOF_CHAR(tty) != __DISABLED_CHAR &&
c239kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)))
c241kernel/chr_drv/tty_io.cif ((c==10) && (L_ECHO(tty) || (L_CANON(tty) && L_ECHONL(tty)))) {
c245kernel/chr_drv/tty_io.cif (c<32 && L_ECHOCTL(tty)) {
c247kernel/chr_drv/tty_io.cput_tty_queue(c+64, &tty->write_q);
c249kernel/chr_drv/tty_io.cput_tty_queue(c, &tty->write_q);
c251kernel/chr_drv/tty_io.cput_tty_queue(c, &tty->secondary);
c295kernel/chr_drv/tty_io.cint c;
c361kernel/chr_drv/tty_io.cwhile (nr > 0 && ((c = get_tty_queue(&tty->secondary)) >= 0)) {
c363kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)) || c==10)
c366kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)) && L_CANON(tty))
c368kernel/chr_drv/tty_io.cput_fs_byte(c,b++);
c372kernel/chr_drv/tty_io.cif (c==10 && L_CANON(tty))
c425kernel/chr_drv/tty_io.cchar c, *b=buf;
c464kernel/chr_drv/tty_io.cc=get_fs_byte(b);
c466kernel/chr_drv/tty_io.cif (c=='\r' && O_CRNL(tty))
c467kernel/chr_drv/tty_io.cc='\n';
c468kernel/chr_drv/tty_io.celse if (c=='\n' && O_NLRET(tty))
c469kernel/chr_drv/tty_io.cc='\r';
c470kernel/chr_drv/tty_io.cif (c=='\n' && O_NLCR(tty) &&
c476kernel/chr_drv/tty_io.cc=toupper(c);
c480kernel/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;
c13kernel/math/div.cstatic void shift_left(int * c)
c19kernel/math/div.c::"r" ((long) c):"ax");
c22kernel/math/div.cstatic void shift_right(int * c)
c25kernel/math/div.c::"r" ((long) c));
c40kernel/math/div.cstatic void div64(int * a, int * b, int * c)
c46kernel/math/div.cc += 4;
c49kernel/math/div.cc--;
c55kernel/math/div.c*c |= mask;
c527kernel/math/emulate.ctemp_real_unaligned c;
c529kernel/math/emulate.cc = *a;
c531kernel/math/emulate.c*b = c;
c114kernel/math/get_put.cunsigned char c;
c121kernel/math/get_put.cc = get_fs_byte(addr--);
c123kernel/math/get_put.cADD64((c>>4), i.a, i.b);
c125kernel/math/get_put.cADD64((c&0xf), i.a, i.b);
c223kernel/math/get_put.cunsigned char c;
c234kernel/math/get_put.cc = rem;
c236kernel/math/get_put.cc += rem<<4;
c237kernel/math/get_put.cput_fs_byte(c,addr++);
c13kernel/math/mul.cstatic void shift(int * c)
c19kernel/math/mul.c::"r" ((long) c):"ax");
c22kernel/math/mul.cstatic void mul64(const temp_real * a, const temp_real * b, int * c)
c42kernel/math/mul.c::"S" ((long) a),"c" ((long) b),"D" ((long) c)
c16kernel/math/sqrt.cstatic void shift_right(int * c)
c19kernel/math/sqrt.c::"r" ((long) c));
c49kernel/math/sqrt.cunsigned long mask, *c;
c72kernel/math/sqrt.cc = res + 2;
c76kernel/math/sqrt.cc--;
c80kernel/math/sqrt.c*c |= mask;
c29kernel/printk.cchar c;
c68kernel/printk.cc = *((char *) log_page+log_start);
c72kernel/printk.cput_fs_byte(c,buf);
c132kernel/sched.cint i,next,c;
c153kernel/sched.cc = -1;
c160kernel/sched.cif ((*p)->state == TASK_RUNNING && (*p)->counter > c)
c161kernel/sched.cc = (*p)->counter, next = i;
c163kernel/sched.cif (c)
c17kernel/vsprintf.c#define is_digit(c)  ((c) >= '0' && (c) <= '9')
c44kernel/vsprintf.cchar c,sign,tmp[36];
c52kernel/vsprintf.cc = (type & ZEROPAD) ? '0' : ' ' ;
c83kernel/vsprintf.c*str++ = c;
c48net/tcp/sock.c#define swap(a,b) {unsigned long c; c=a; a=b; b=c;}
c43net/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)