taglinefilesource code
c59fs/ext/dir.cchar c;
c80fs/ext/dir.cif (c = de->name[i])
c81fs/ext/dir.cput_fs_byte(c,i+dirent->d_name);
c163fs/ext/file.cint written,block,c;
c190fs/ext/file.cc = BLOCK_SIZE - (pos % BLOCK_SIZE);
c191fs/ext/file.cif (c > count-written)
c192fs/ext/file.cc = count-written;
c193fs/ext/file.cif (c == BLOCK_SIZE)
c203fs/ext/file.cpos += c;
c208fs/ext/file.cwritten += c;
c209fs/ext/file.cmemcpy_fromfs(p,buf,c);
c210fs/ext/file.cbuf += c;
c631fs/ext/namei.cchar c;
c655fs/ext/namei.cwhile (i < 1023 && (c=get_fs_byte(symname++)))
c656fs/ext/namei.cname_block->b_data[i++] = c;
c84fs/ext/symlink.cchar c;
c100fs/ext/symlink.cwhile (i<buflen && (c = bh->b_data[i])) {
c102fs/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);
c163fs/minix/file.cint written,block,c;
c190fs/minix/file.cc = BLOCK_SIZE - (pos % BLOCK_SIZE);
c191fs/minix/file.cif (c > count-written)
c192fs/minix/file.cc = count-written;
c193fs/minix/file.cif (c == BLOCK_SIZE)
c203fs/minix/file.cpos += c;
c208fs/minix/file.cwritten += c;
c209fs/minix/file.cmemcpy_fromfs(p,buf,c);
c210fs/minix/file.cbuf += c;
c503fs/minix/namei.cchar c;
c527fs/minix/namei.cwhile (i < 1023 && (c=get_fs_byte(symname++)))
c528fs/minix/namei.cname_block->b_data[i++] = c;
c78fs/minix/symlink.cchar c;
c94fs/minix/symlink.cwhile (i<buflen && (c = bh->b_data[i])) {
c96fs/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;
c30fs/msdos/namei.cchar c;
c41fs/msdos/namei.cc = 0;
c43fs/msdos/namei.cc = get_fs_byte(name++);
c45fs/msdos/namei.cif (c == ' ' && conv != 'r') return -EINVAL;
c46fs/msdos/namei.cif (c >= 'A' && c <= 'Z') {
c48fs/msdos/namei.cc += 32;
c50fs/msdos/namei.cif (c < ' ' || c == ':' || c == '\\') return -EINVAL;
c51fs/msdos/namei.cif (c == '.') break;
c52fs/msdos/namei.cspace = c == ' ';
c53fs/msdos/namei.c*walk = c >= 'a' && c <= 'z' ? c-32 : c;
c56fs/msdos/namei.cif (conv == 's' && len && c != '.') {
c57fs/msdos/namei.cc = get_fs_byte(name++);
c59fs/msdos/namei.cif (c != '.') return -EINVAL;
c61fs/msdos/namei.cwhile (c != '.' && len--) c = get_fs_byte(name++);
c63fs/msdos/namei.cif (c == '.') {
c66fs/msdos/namei.cc = get_fs_byte(name++);
c68fs/msdos/namei.cif (c == ' ' && conv != 'r') return -EINVAL;
c69fs/msdos/namei.cif (c < ' ' || c == ':' || c == '\\' || c == '.')
c71fs/msdos/namei.cif (c >= 'A' && c <= 'Z') {
c73fs/msdos/namei.cc += 32;
c75fs/msdos/namei.cspace = c == ' ';
c76fs/msdos/namei.c*walk++ = c >= 'a' && c <= 'z' ? c-32 : c;
c117fs/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)
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)
c103include/linux/tty.hextern void put_tty_queue(char c, struct tty_queue * queue);
c165include/linux/unistd.h#define _syscall3(type,name,atype,a,btype,b,ctype,c) \
c166include/linux/unistd.htype name(atype a,btype b,ctype c) \
c172include/linux/unistd.h: "0" (__NR_##name),"g" ((long)(a)),"c" ((long)(b)),"d" ((long)(c)):"bx"); \
c179include/linux/unistd.h#define _syscall4(type,name,atype,a,btype,b,ctype,c,dtype,d) \
c180include/linux/unistd.htype name (atype a, btype b, ctype c, dtype d) \
c187include/linux/unistd.h"d" ((long)(c)),"S" ((long)(d))); \
c194include/linux/unistd.h#define _syscall5(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e) \
c195include/linux/unistd.htype name (atype a,btype b,ctype c,dtype d,etype e) \
c202include/linux/unistd.h"d" ((long)(c)),"S" ((long)(d)),"D" ((long)(e))); \
c160kernel/blk_drv/hd.cunsigned char c;
c163kernel/blk_drv/hd.cc = inb_p(HD_STATUS);
c164kernel/blk_drv/hd.cc &= (BUSY_STAT | READY_STAT | SEEK_STAT);
c165kernel/blk_drv/hd.cif (c == (READY_STAT | SEEK_STAT))
c168kernel/blk_drv/hd.cprintk("HD controller times out, status = 0x%02x\n\r",c);
c899kernel/chr_drv/console.cint c;
c908kernel/chr_drv/console.cwhile (!tty->stopped &&  (c = get_tty_queue(tty->write_q)) >= 0) {
c909kernel/chr_drv/console.cif (state == ESnormal && translate[c]) {
c916kernel/chr_drv/console.cc = translate[c];
c917kernel/chr_drv/console.c*(char *) pos = c;
c932kernel/chr_drv/console.cif (c < 32 || c == 127) switch(c) {
c975kernel/chr_drv/console.cswitch (c) {
c1026kernel/chr_drv/console.cif (c == '[') { /* Function key */
c1030kernel/chr_drv/console.cif (ques=(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)
c1466kernel/chr_drv/console.cchar c;
c1470kernel/chr_drv/console.cwhile (c = *(b++)) {
c1471kernel/chr_drv/console.cif (c == 10 || c == 13 || need_wrap) {
c1472kernel/chr_drv/console.cif (c != 13)
c1475kernel/chr_drv/console.cif (c == 10 || c == 13)
c1478kernel/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);
c55kernel/chr_drv/pty.cint c;
c64kernel/chr_drv/pty.cc = get_tty_queue(from->write_q);
c65kernel/chr_drv/pty.cput_tty_queue(c,to->read_q);
c67kernel/chr_drv/serial.cint c, i = 0;
c75kernel/chr_drv/serial.cc = queue->buf[queue->tail];
c78kernel/chr_drv/serial.coutb(c,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;
c134kernel/chr_drv/tty_io.cint c;
c144kernel/chr_drv/tty_io.cc = get_tty_queue(tty->read_q);
c145kernel/chr_drv/tty_io.cif (c < 0)
c148kernel/chr_drv/tty_io.cc &= 0x7f;
c149kernel/chr_drv/tty_io.cif (c==13) {
c151kernel/chr_drv/tty_io.cc=10;
c154kernel/chr_drv/tty_io.c} else if (c==10 && I_NLCR(tty))
c155kernel/chr_drv/tty_io.cc=13;
c157kernel/chr_drv/tty_io.cc=tolower(c);
c160kernel/chr_drv/tty_io.c(c==KILL_CHAR(tty))) {
c163kernel/chr_drv/tty_io.c(c=LAST(tty->secondary))==10 ||
c165kernel/chr_drv/tty_io.c(c==EOF_CHAR(tty))))) {
c167kernel/chr_drv/tty_io.cif (c<32) {
c181kernel/chr_drv/tty_io.c(c==ERASE_CHAR(tty))) {
c183kernel/chr_drv/tty_io.c(c=LAST(tty->secondary))==10 ||
c185kernel/chr_drv/tty_io.c(c==EOF_CHAR(tty))))
c188kernel/chr_drv/tty_io.cif (c<32) {
c203kernel/chr_drv/tty_io.c(c==STOP_CHAR(tty))) {
c208kernel/chr_drv/tty_io.c(c==START_CHAR(tty))) {
c215kernel/chr_drv/tty_io.c(c==INTR_CHAR(tty))) {
c221kernel/chr_drv/tty_io.c(c==QUIT_CHAR(tty))) {
c227kernel/chr_drv/tty_io.c(c==SUSPEND_CHAR(tty))) {
c233kernel/chr_drv/tty_io.cif (c==10 || (EOF_CHAR(tty) != __DISABLED_CHAR &&
c234kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)))
c236kernel/chr_drv/tty_io.cif ((c==10) && (L_ECHO(tty) || (L_CANON(tty) && L_ECHONL(tty)))) {
c240kernel/chr_drv/tty_io.cif (c<32 && L_ECHOCTL(tty)) {
c242kernel/chr_drv/tty_io.cput_tty_queue(c+64,tty->write_q);
c244kernel/chr_drv/tty_io.cput_tty_queue(c,tty->write_q);
c246kernel/chr_drv/tty_io.cput_tty_queue(c,tty->secondary);
c307kernel/chr_drv/tty_io.cint c;
c349kernel/chr_drv/tty_io.cwhile (nr > 0 && ((c = get_tty_queue(tty->secondary)) >= 0)) {
c351kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)) || c==10)
c354kernel/chr_drv/tty_io.cc==EOF_CHAR(tty)) && L_CANON(tty))
c356kernel/chr_drv/tty_io.cput_fs_byte(c,b++);
c360kernel/chr_drv/tty_io.cif (c==10 && L_CANON(tty))
c394kernel/chr_drv/tty_io.cchar c, *b=buf;
c430kernel/chr_drv/tty_io.cc=get_fs_byte(b);
c432kernel/chr_drv/tty_io.cif (c=='\r' && O_CRNL(tty))
c433kernel/chr_drv/tty_io.cc='\n';
c434kernel/chr_drv/tty_io.celse if (c=='\n' && O_NLRET(tty))
c435kernel/chr_drv/tty_io.cc='\r';
c436kernel/chr_drv/tty_io.cif (c=='\n' && O_NLCR(tty) &&
c442kernel/chr_drv/tty_io.cc=toupper(c);
c446kernel/chr_drv/tty_io.cput_tty_queue(c,tty->write_q);
c92kernel/chr_drv/tty_ioctl.cchar *c, *d;
c100kernel/chr_drv/tty_ioctl.cc = (char *)(*p);
c103kernel/chr_drv/tty_ioctl.cput_fs_byte(*c++, d++);
c197kernel/chr_drv/tty_ioctl.cchar c, * tmp;
c204kernel/chr_drv/tty_ioctl.cc = get_fs_byte(i + (char *) ws);
c205kernel/chr_drv/tty_ioctl.cif (c == *tmp)
c208kernel/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;
c524kernel/math/emulate.ctemp_real_unaligned c;
c526kernel/math/emulate.cc = *a;
c528kernel/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);
c129kernel/sched.cint i,next,c;
c150kernel/sched.cc = -1;
c157kernel/sched.cif ((*p)->state == TASK_RUNNING && (*p)->counter > c)
c158kernel/sched.cc = (*p)->counter, next = i;
c160kernel/sched.cif (c) break;
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;
c59tools/build.cint i,c,id;
c135tools/build.cfor (i=0 ; (c=read(id,buf,sizeof buf))>0 ; i+=c )
c136tools/build.cif (write(1,buf,c)!=c)
c143tools/build.cfor (c=0 ; c<sizeof(buf) ; c++)
c144tools/build.cbuf[c] = '\0';
c146tools/build.cc = SETUP_SECTS*512-i;
c147tools/build.cif (c > sizeof(buf))
c148tools/build.cc = sizeof(buf);
c149tools/build.cif (write(1,buf,c) != c)
c151tools/build.ci += c;
c160tools/build.cfor (i=0 ; (c=read(id,buf,sizeof buf))>0 ; i+=c )
c161tools/build.cif (write(1,buf,c)!=c)