| tag | line | file | source code |
| c | 66 | fs/ext/dir.c | char c; |
| c | 98 | fs/ext/dir.c | if ((c = de->name[i]) != 0) |
| c | 99 | fs/ext/dir.c | put_fs_byte(c,i+dirent->d_name); |
| c | 194 | fs/ext/file.c | int written,c; |
| c | 222 | fs/ext/file.c | c = BLOCK_SIZE - (pos % BLOCK_SIZE); |
| c | 223 | fs/ext/file.c | if (c > count-written) |
| c | 224 | fs/ext/file.c | c = count-written; |
| c | 225 | fs/ext/file.c | if (c != BLOCK_SIZE && !bh->b_uptodate) { |
| c | 236 | fs/ext/file.c | pos += c; |
| c | 241 | fs/ext/file.c | written += c; |
| c | 242 | fs/ext/file.c | memcpy_fromfs(p,buf,c); |
| c | 243 | fs/ext/file.c | buf += c; |
| c | 629 | fs/ext/namei.c | char c; |
| c | 646 | fs/ext/namei.c | while (i < 1023 && (c=get_fs_byte(symname++))) |
| c | 647 | fs/ext/namei.c | name_block->b_data[i++] = c; |
| c | 92 | fs/ext/symlink.c | char c; |
| c | 105 | fs/ext/symlink.c | while (i<buflen && (c = bh->b_data[i])) { |
| c | 107 | fs/ext/symlink.c | put_fs_byte(c,buffer++); |
| c | 65 | fs/isofs/dir.c | char c = 0; |
| c | 176 | fs/isofs/dir.c | if (!(c = dpnt[i])) break; |
| c | 177 | fs/isofs/dir.c | if (c >= 'A' && c <= 'Z') c |= 0x20; /* lower case */ |
| c | 178 | fs/isofs/dir.c | if (c == ';' && i == dlen-2 && de->name[i+1] == '1') |
| c | 180 | fs/isofs/dir.c | if (c == ';') c = '.'; /* Convert remaining ';' to '.' */ |
| c | 181 | fs/isofs/dir.c | dpnt[i] = c; |
| c | 75 | fs/isofs/namei.c | char c; |
| c | 154 | fs/isofs/namei.c | c = dpnt[i]; |
| c | 155 | fs/isofs/namei.c | if (c >= 'A' && c <= 'Z') c |= 0x20; /* lower case */ |
| c | 156 | fs/isofs/namei.c | if (c == ';' && i == dlen-2 && dpnt[i+1] == '1') { |
| c | 160 | fs/isofs/namei.c | if (c == ';') c = '.'; |
| c | 161 | fs/isofs/namei.c | de->name[i] = c; |
| c | 86 | fs/isofs/symlink.c | char c; |
| c | 102 | fs/isofs/symlink.c | while (i<buflen && (c = pnt[i])) { |
| c | 104 | fs/isofs/symlink.c | put_fs_byte(c,buffer++); |
| c | 59 | fs/minix/dir.c | char c; |
| c | 80 | fs/minix/dir.c | if ((c = de->name[i]) != 0) |
| c | 81 | fs/minix/dir.c | put_fs_byte(c,i+dirent->d_name); |
| c | 188 | fs/minix/file.c | int written,c; |
| c | 216 | fs/minix/file.c | c = BLOCK_SIZE - (pos % BLOCK_SIZE); |
| c | 217 | fs/minix/file.c | if (c > count-written) |
| c | 218 | fs/minix/file.c | c = count-written; |
| c | 219 | fs/minix/file.c | if (c != BLOCK_SIZE && !bh->b_uptodate) { |
| c | 230 | fs/minix/file.c | pos += c; |
| c | 235 | fs/minix/file.c | written += c; |
| c | 236 | fs/minix/file.c | memcpy_fromfs(p,buf,c); |
| c | 237 | fs/minix/file.c | buf += c; |
| c | 502 | fs/minix/namei.c | char c; |
| c | 519 | fs/minix/namei.c | while (i < 1023 && (c=get_fs_byte(symname++))) |
| c | 520 | fs/minix/namei.c | name_block->b_data[i++] = c; |
| c | 86 | fs/minix/symlink.c | char c; |
| c | 99 | fs/minix/symlink.c | while (i<buflen && (c = bh->b_data[i])) { |
| c | 101 | fs/minix/symlink.c | put_fs_byte(c,buffer++); |
| c | 58 | fs/msdos/dir.c | char c,*walk; |
| c | 82 | fs/msdos/dir.c | if (!(c = de->name[i])) break; |
| c | 83 | fs/msdos/dir.c | if (c >= 'A' && c <= 'Z') c += 32; |
| c | 84 | fs/msdos/dir.c | if (c != ' ') last = i+1; |
| c | 85 | fs/msdos/dir.c | put_fs_byte(c,i+dirent->d_name); |
| c | 91 | fs/msdos/dir.c | if (!(c = de->ext[i2])) break; |
| c | 92 | fs/msdos/dir.c | if (c >= 'A' && c <= 'Z') c += 32; |
| c | 93 | fs/msdos/dir.c | if (c != ' ') last = i+1; |
| c | 94 | fs/msdos/dir.c | put_fs_byte(c,i+dirent->d_name); |
| c | 36 | fs/msdos/namei.c | char c; |
| c | 47 | fs/msdos/namei.c | c = 0; |
| c | 49 | fs/msdos/namei.c | c = get_fs_byte(name++); |
| c | 51 | fs/msdos/namei.c | if (conv != 'r' && strchr(bad_chars,c)) return -EINVAL; |
| c | 52 | fs/msdos/namei.c | if (conv == 's' && strchr(bad_if_strict,c)) return -EINVAL; |
| c | 53 | fs/msdos/namei.c | if (c >= 'A' && c <= 'Z') { |
| c | 55 | fs/msdos/namei.c | c += 32; |
| c | 57 | fs/msdos/namei.c | if (c < ' ' || c == ':' || c == '\\') return -EINVAL; |
| c | 58 | fs/msdos/namei.c | if (c == '.') break; |
| c | 59 | fs/msdos/namei.c | space = c == ' '; |
| c | 60 | fs/msdos/namei.c | *walk = c >= 'a' && c <= 'z' ? c-32 : c; |
| c | 63 | fs/msdos/namei.c | if (conv == 's' && len && c != '.') { |
| c | 64 | fs/msdos/namei.c | c = get_fs_byte(name++); |
| c | 66 | fs/msdos/namei.c | if (c != '.') return -EINVAL; |
| c | 68 | fs/msdos/namei.c | while (c != '.' && len--) c = get_fs_byte(name++); |
| c | 70 | fs/msdos/namei.c | if (c == '.') { |
| c | 73 | fs/msdos/namei.c | c = get_fs_byte(name++); |
| c | 75 | fs/msdos/namei.c | if (conv != 'r' && strchr(bad_chars,c)) return -EINVAL; |
| c | 76 | fs/msdos/namei.c | if (conv == 's' && strchr(bad_if_strict,c)) |
| c | 78 | fs/msdos/namei.c | if (c < ' ' || c == ':' || c == '\\' || c == '.') |
| c | 80 | fs/msdos/namei.c | if (c >= 'A' && c <= 'Z') { |
| c | 82 | fs/msdos/namei.c | c += 32; |
| c | 84 | fs/msdos/namei.c | space = c == ' '; |
| c | 85 | fs/msdos/namei.c | *walk++ = c >= 'a' && c <= 'z' ? c-32 : c; |
| c | 116 | fs/namei.c | char c; |
| c | 126 | fs/namei.c | if ((c=get_fs_byte(pathname))=='/') { |
| c | 134 | fs/namei.c | for(len=0;(c=get_fs_byte(pathname++))&&(c!='/');len++) |
| c | 136 | fs/namei.c | if (!c) |
| c | 479 | fs/nfs/dir.c | int c; |
| c | 493 | fs/nfs/dir.c | for (i = 0; i < NFS_MAXPATHLEN && (c = get_fs_byte(symname++)); i++) |
| c | 494 | fs/nfs/dir.c | symfilename[i] = c; |
| c | 89 | fs/nfs/symlink.c | char c; |
| c | 106 | fs/nfs/symlink.c | for (i = 0; i < buflen && (c = res[i]); i++) |
| c | 107 | fs/nfs/symlink.c | put_fs_byte(c,buffer++); |
| c | 21 | fs/proc/array.c | int a, b, c; |
| c | 25 | fs/proc/array.c | c = avenrun[2] + (FIXED_1/200); |
| c | 29 | fs/proc/array.c | LOAD_INT(c), LOAD_FRAC(c)); |
| c | 87 | fs/proc/array.c | char c; |
| c | 96 | fs/proc/array.c | c = *(char *) addr; |
| c | 97 | fs/proc/array.c | if (!c) |
| c | 100 | fs/proc/array.c | buffer[size++] = c; |
| c | 54 | fs/proc/fd.c | unsigned int ino, pid, fd, c; |
| c | 87 | fs/proc/fd.c | c = get_fs_byte(name) - '0'; |
| c | 89 | fs/proc/fd.c | if (c > 9) { |
| c | 94 | fs/proc/fd.c | fd += c; |
| c | 65 | fs/proc/root.c | unsigned int pid, c; |
| c | 89 | fs/proc/root.c | c = get_fs_byte(name) - '0'; |
| c | 91 | fs/proc/root.c | if (c > 9) { |
| c | 96 | fs/proc/root.c | pid += c; |
| c | 16 | include/linux/ctype.h | #define isalnum(c) ((_ctype+1)[c]&(_U|_L|_D)) |
| c | 17 | include/linux/ctype.h | #define isalpha(c) ((_ctype+1)[c]&(_U|_L)) |
| c | 18 | include/linux/ctype.h | #define iscntrl(c) ((_ctype+1)[c]&(_C)) |
| c | 19 | include/linux/ctype.h | #define isdigit(c) ((_ctype+1)[c]&(_D)) |
| c | 20 | include/linux/ctype.h | #define isgraph(c) ((_ctype+1)[c]&(_P|_U|_L|_D)) |
| c | 21 | include/linux/ctype.h | #define islower(c) ((_ctype+1)[c]&(_L)) |
| c | 22 | include/linux/ctype.h | #define isprint(c) ((_ctype+1)[c]&(_P|_U|_L|_D|_SP)) |
| c | 23 | include/linux/ctype.h | #define ispunct(c) ((_ctype+1)[c]&(_P)) |
| c | 24 | include/linux/ctype.h | #define isspace(c) ((_ctype+1)[c]&(_S)) |
| c | 25 | include/linux/ctype.h | #define isupper(c) ((_ctype+1)[c]&(_U)) |
| c | 26 | include/linux/ctype.h | #define isxdigit(c) ((_ctype+1)[c]&(_D|_X)) |
| c | 28 | include/linux/ctype.h | #define isascii(c) (((unsigned) c)<=0x7f) |
| c | 29 | include/linux/ctype.h | #define toascii(c) (((unsigned) c)&0x7f) |
| c | 31 | include/linux/ctype.h | #define tolower(c) (_ctmp=c,isupper(_ctmp)?_ctmp-('A'-'a'):_ctmp) |
| c | 32 | include/linux/ctype.h | #define toupper(c) (_ctmp=c,islower(_ctmp)?_ctmp-('a'-'A'):_ctmp) |
| c | 27 | include/linux/ioctl.h | #define _IO(c,d) (IOC_VOID | (d)<<16) | c) /* param encoded */ |
| c | 31 | include/linux/ioctl.h | #define _IOW(c,d,t) (IOC_IN | ((sizeof(t)<<16) & IOCSIZE_MASK) | \ |
| c | 32 | include/linux/ioctl.h | (c<<8) | d) |
| c | 33 | include/linux/ioctl.h | #define _IOR(c,d,t) (IOC_OUT | ((sizeof(t)<<16) & IOCSIZE_MASK) | \ |
| c | 34 | include/linux/ioctl.h | (c<<8) | d) |
| c | 36 | include/linux/ioctl.h | #define _IOWR(c,d,t) (IOC_INOUT | (sizeof(t)<<16) & IOCSIZE_MASK) | \ |
| c | 37 | include/linux/ioctl.h | (c<<8) | d) |
| c | 123 | include/linux/string.h | extern inline char * strchr(const char * s,char c) |
| c | 136 | include/linux/string.h | :"=a" (__res):"S" (s),"0" (c):"si"); |
| c | 140 | include/linux/string.h | extern inline char * strrchr(const char * s,char c) |
| c | 152 | include/linux/string.h | :"=d" (__res):"0" (0),"S" (s),"a" (c):"ax","si"); |
| c | 383 | include/linux/string.h | extern inline void * memchr(const void * cs,char c,size_t count) |
| c | 394 | include/linux/string.h | :"=D" (__res):"a" (c),"D" (cs),"c" (count) |
| c | 399 | include/linux/string.h | extern inline void * memset(void * s,char c,size_t count) |
| c | 404 | include/linux/string.h | ::"a" (c),"D" (s),"c" (count) |
| c | 124 | include/linux/tty.h | extern void put_tty_queue(char c, struct tty_queue * queue); |
| c | 171 | include/linux/unistd.h | #define _syscall3(type,name,atype,a,btype,b,ctype,c) \ |
| c | 172 | include/linux/unistd.h | type name(atype a,btype b,ctype c) \ |
| c | 178 | include/linux/unistd.h | : "0" (__NR_##name),"g" ((long)(a)),"c" ((long)(b)),"d" ((long)(c)):"bx"); \ |
| c | 185 | include/linux/unistd.h | #define _syscall4(type,name,atype,a,btype,b,ctype,c,dtype,d) \ |
| c | 186 | include/linux/unistd.h | type name (atype a, btype b, ctype c, dtype d) \ |
| c | 193 | include/linux/unistd.h | "d" ((long)(c)),"S" ((long)(d))); \ |
| c | 200 | include/linux/unistd.h | #define _syscall5(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e) \ |
| c | 201 | include/linux/unistd.h | type name (atype a,btype b,ctype c,dtype d,etype e) \ |
| c | 208 | include/linux/unistd.h | "d" ((long)(c)),"S" ((long)(d)),"D" ((long)(e))); \ |
| c | 80 | kernel/FPU-emu/fpu_etc.c | int c=0; |
| c | 84 | kernel/FPU-emu/fpu_etc.c | c = SW_C3|SW_C0; |
| c | 87 | kernel/FPU-emu/fpu_etc.c | c = SW_C3; |
| c | 91 | kernel/FPU-emu/fpu_etc.c | c = SW_C2; |
| c | 93 | kernel/FPU-emu/fpu_etc.c | c = SW_C3|SW_C2; |
| c | 96 | kernel/FPU-emu/fpu_etc.c | c = SW_C0; |
| c | 99 | kernel/FPU-emu/fpu_etc.c | c = SW_C2|SW_C0; |
| c | 103 | kernel/FPU-emu/fpu_etc.c | c |= SW_C1; |
| c | 104 | kernel/FPU-emu/fpu_etc.c | setcc(c); |
| c | 477 | kernel/FPU-emu/fpu_trig.c | int c = 0; |
| c | 488 | kernel/FPU-emu/fpu_trig.c | if (q&4) c |= SW_C3; |
| c | 489 | kernel/FPU-emu/fpu_trig.c | if (q&2) c |= SW_C1; |
| c | 490 | kernel/FPU-emu/fpu_trig.c | if (q&1) c |= SW_C0; |
| c | 492 | kernel/FPU-emu/fpu_trig.c | setcc(c); |
| c | 111 | kernel/FPU-emu/reg_compare.c | int c = compare(&FPU_loaded_data); |
| c | 113 | kernel/FPU-emu/reg_compare.c | if (c & COMP_NAN) |
| c | 119 | kernel/FPU-emu/reg_compare.c | switch (c) |
| c | 146 | kernel/FPU-emu/reg_compare.c | int c = compare(&st(nr)); |
| c | 148 | kernel/FPU-emu/reg_compare.c | if (c & COMP_NAN) |
| c | 154 | kernel/FPU-emu/reg_compare.c | switch (c) |
| c | 182 | kernel/FPU-emu/reg_compare.c | int c = compare(&st(nr)); |
| c | 183 | kernel/FPU-emu/reg_compare.c | if (c & COMP_NAN) |
| c | 185 | kernel/FPU-emu/reg_compare.c | if (c & COMP_SNAN) /* This is the only difference between |
| c | 191 | kernel/FPU-emu/reg_compare.c | switch (c) |
| c | 54 | kernel/FPU-emu/reg_constant.c | static void fld_const(FPU_REG *c) |
| c | 64 | kernel/FPU-emu/reg_constant.c | reg_move(c, FPU_st0_ptr); |
| c | 148 | kernel/FPU-emu/reg_ld_str.c | int c = FPU_loaded_data.sign; |
| c | 150 | kernel/FPU-emu/reg_ld_str.c | FPU_loaded_data.sign = c; |
| c | 196 | kernel/FPU-emu/reg_ld_str.c | int c = FPU_loaded_data.sign; |
| c | 198 | kernel/FPU-emu/reg_ld_str.c | FPU_loaded_data.sign = c; |
| c | 200 | kernel/blk_drv/hd.c | unsigned char c; |
| c | 203 | kernel/blk_drv/hd.c | c = inb_p(HD_STATUS); |
| c | 204 | kernel/blk_drv/hd.c | c &= (BUSY_STAT | READY_STAT | SEEK_STAT); |
| c | 205 | kernel/blk_drv/hd.c | if (c == (READY_STAT | SEEK_STAT)) |
| c | 208 | kernel/blk_drv/hd.c | printk("HD controller times out, status = 0x%02x\n\r",c); |
| c | 156 | kernel/chr_drv/atixlmouse.c | unsigned char a,b,c; |
| c | 160 | kernel/chr_drv/atixlmouse.c | c = inb( ATIXL_MSE_SIGNATURE_PORT ); |
| c | 161 | kernel/chr_drv/atixlmouse.c | if (( a != b ) && ( a == c )) |
| c | 891 | kernel/chr_drv/console.c | int c; |
| c | 900 | kernel/chr_drv/console.c | while (!tty->stopped && (c = get_tty_queue(&tty->write_q)) >= 0) { |
| c | 901 | kernel/chr_drv/console.c | if (state == ESnormal && translate[c]) { |
| c | 908 | kernel/chr_drv/console.c | c = translate[c]; |
| c | 909 | kernel/chr_drv/console.c | *(char *) pos = c; |
| c | 924 | kernel/chr_drv/console.c | switch (c) { |
| c | 971 | kernel/chr_drv/console.c | switch (c) { |
| c | 1022 | kernel/chr_drv/console.c | if (c == '[') { /* Function key */ |
| c | 1026 | kernel/chr_drv/console.c | ques = (c=='?'); |
| c | 1030 | kernel/chr_drv/console.c | if (c==';' && npar<NPAR-1) { |
| c | 1033 | kernel/chr_drv/console.c | } else if (c>='0' && c<='9') { |
| c | 1035 | kernel/chr_drv/console.c | par[npar] += c-'0'; |
| c | 1040 | kernel/chr_drv/console.c | switch(c) { |
| c | 1059 | kernel/chr_drv/console.c | switch(c) { |
| c | 1162 | kernel/chr_drv/console.c | if (c == '8') { |
| c | 1172 | kernel/chr_drv/console.c | if (c == '0') |
| c | 1174 | kernel/chr_drv/console.c | else if (c == 'B') |
| c | 1176 | kernel/chr_drv/console.c | else if (c == 'U') |
| c | 1183 | kernel/chr_drv/console.c | if (c == '0') |
| c | 1185 | kernel/chr_drv/console.c | else if (c == 'B') |
| c | 1187 | kernel/chr_drv/console.c | else if (c == 'U') |
| c | 1217 | kernel/chr_drv/console.c | void * memsetw(void * s,unsigned short c,int count) |
| c | 1222 | kernel/chr_drv/console.c | ::"a" (c),"D" (s),"c" (count) |
| c | 1444 | kernel/chr_drv/console.c | char c; |
| c | 1448 | kernel/chr_drv/console.c | while ((c = *(b++)) != 0) { |
| c | 1449 | kernel/chr_drv/console.c | if (c == 10 || c == 13 || need_wrap) { |
| c | 1450 | kernel/chr_drv/console.c | if (c != 13) |
| c | 1453 | kernel/chr_drv/console.c | if (c == 10 || c == 13) |
| c | 1456 | kernel/chr_drv/console.c | *(char *) pos = c; |
| c | 74 | kernel/chr_drv/lp.c | char c, *temp = buf; |
| c | 86 | kernel/chr_drv/lp.c | c = get_fs_byte(temp); |
| c | 87 | kernel/chr_drv/lp.c | retval = lp_char(c, minor); |
| c | 225 | kernel/chr_drv/psaux.c | unsigned char c; |
| c | 241 | kernel/chr_drv/psaux.c | c = get_from_queue(); |
| c | 242 | kernel/chr_drv/psaux.c | put_fs_byte(c, buffer++); |
| c | 39 | kernel/chr_drv/pty.c | int c; |
| c | 48 | kernel/chr_drv/pty.c | c = get_tty_queue(&from->write_q); |
| c | 49 | kernel/chr_drv/pty.c | put_tty_queue(c, &to->read_q); |
| c | 340 | kernel/chr_drv/serial.c | int c, count = 0; |
| c | 356 | kernel/chr_drv/serial.c | c = queue->buf[queue->tail]; |
| c | 359 | kernel/chr_drv/serial.c | outb(c, UART_TX + port); |
| c | 58 | kernel/chr_drv/tty_io.c | void put_tty_queue(char c, struct tty_queue * queue) |
| c | 66 | kernel/chr_drv/tty_io.c | queue->buf[queue->head] = c; |
| c | 124 | kernel/chr_drv/tty_io.c | int c; |
| c | 140 | kernel/chr_drv/tty_io.c | c = LEFT(&tty->secondary); |
| c | 141 | kernel/chr_drv/tty_io.c | if (tty->throttle && (c < SQ_THRESHOLD_LW) |
| c | 144 | kernel/chr_drv/tty_io.c | if (c == 0) |
| c | 146 | kernel/chr_drv/tty_io.c | c = get_tty_queue(&tty->read_q); |
| c | 147 | kernel/chr_drv/tty_io.c | if (c < 0) |
| c | 150 | kernel/chr_drv/tty_io.c | c &= 0x7f; |
| c | 151 | kernel/chr_drv/tty_io.c | if (c==13) { |
| c | 153 | kernel/chr_drv/tty_io.c | c=10; |
| c | 156 | kernel/chr_drv/tty_io.c | } else if (c==10 && I_NLCR(tty)) |
| c | 157 | kernel/chr_drv/tty_io.c | c=13; |
| c | 159 | kernel/chr_drv/tty_io.c | c=tolower(c); |
| c | 162 | kernel/chr_drv/tty_io.c | (c==KILL_CHAR(tty))) { |
| c | 165 | kernel/chr_drv/tty_io.c | (c=LAST(&tty->secondary))==10 || |
| c | 167 | kernel/chr_drv/tty_io.c | (c==EOF_CHAR(tty))))) { |
| c | 169 | kernel/chr_drv/tty_io.c | if (c<32) { |
| c | 183 | kernel/chr_drv/tty_io.c | (c==ERASE_CHAR(tty))) { |
| c | 185 | kernel/chr_drv/tty_io.c | (c=LAST(&tty->secondary))==10 || |
| c | 187 | kernel/chr_drv/tty_io.c | (c==EOF_CHAR(tty)))) |
| c | 190 | kernel/chr_drv/tty_io.c | if (c<32) { |
| c | 205 | kernel/chr_drv/tty_io.c | (c==STOP_CHAR(tty))) { |
| c | 213 | kernel/chr_drv/tty_io.c | (c==START_CHAR(tty)))) { |
| c | 222 | kernel/chr_drv/tty_io.c | (c==INTR_CHAR(tty))) { |
| c | 228 | kernel/chr_drv/tty_io.c | (c==QUIT_CHAR(tty))) { |
| c | 234 | kernel/chr_drv/tty_io.c | (c==SUSPEND_CHAR(tty))) { |
| c | 240 | kernel/chr_drv/tty_io.c | if (c==10 || (EOF_CHAR(tty) != __DISABLED_CHAR && |
| c | 241 | kernel/chr_drv/tty_io.c | c==EOF_CHAR(tty))) |
| c | 243 | kernel/chr_drv/tty_io.c | if ((c==10) && (L_ECHO(tty) || (L_CANON(tty) && L_ECHONL(tty)))) { |
| c | 247 | kernel/chr_drv/tty_io.c | if (c<32 && L_ECHOCTL(tty)) { |
| c | 249 | kernel/chr_drv/tty_io.c | put_tty_queue(c+64, &tty->write_q); |
| c | 251 | kernel/chr_drv/tty_io.c | put_tty_queue(c, &tty->write_q); |
| c | 253 | kernel/chr_drv/tty_io.c | put_tty_queue(c, &tty->secondary); |
| c | 289 | kernel/chr_drv/tty_io.c | int c; |
| c | 344 | kernel/chr_drv/tty_io.c | while (nr > 0 && ((c = get_tty_queue(&tty->secondary)) >= 0)) { |
| c | 346 | kernel/chr_drv/tty_io.c | c==EOF_CHAR(tty)) || c==10) |
| c | 349 | kernel/chr_drv/tty_io.c | c==EOF_CHAR(tty)) && L_CANON(tty)) |
| c | 351 | kernel/chr_drv/tty_io.c | put_fs_byte(c,b++); |
| c | 355 | kernel/chr_drv/tty_io.c | if (c==10 && L_CANON(tty)) |
| c | 440 | kernel/chr_drv/tty_io.c | char c, *b=buf; |
| c | 464 | kernel/chr_drv/tty_io.c | c=get_fs_byte(b); |
| c | 466 | kernel/chr_drv/tty_io.c | if (c=='\r' && O_CRNL(tty)) |
| c | 467 | kernel/chr_drv/tty_io.c | c='\n'; |
| c | 468 | kernel/chr_drv/tty_io.c | else if (c=='\n' && O_NLRET(tty)) |
| c | 469 | kernel/chr_drv/tty_io.c | c='\r'; |
| c | 470 | kernel/chr_drv/tty_io.c | if (c=='\n' && O_NLCR(tty) && |
| c | 476 | kernel/chr_drv/tty_io.c | c=toupper(c); |
| c | 480 | kernel/chr_drv/tty_io.c | put_tty_queue(c,&tty->write_q); |
| c | 87 | kernel/chr_drv/tty_ioctl.c | char *c, *d; |
| c | 95 | kernel/chr_drv/tty_ioctl.c | c = (char *)(*p); |
| c | 98 | kernel/chr_drv/tty_ioctl.c | put_fs_byte(*c++, d++); |
| c | 218 | kernel/chr_drv/tty_ioctl.c | char c, * tmp; |
| c | 225 | kernel/chr_drv/tty_ioctl.c | c = get_fs_byte(i + (char *) ws); |
| c | 226 | kernel/chr_drv/tty_ioctl.c | if (c == *tmp) |
| c | 229 | kernel/chr_drv/tty_ioctl.c | *tmp = c; |
| c | 29 | kernel/printk.c | char c; |
| c | 68 | kernel/printk.c | c = *((char *) log_page+log_start); |
| c | 72 | kernel/printk.c | put_fs_byte(c,buf); |
| c | 101 | kernel/sched.c | int i,next,c; |
| c | 120 | kernel/sched.c | c = -1; |
| c | 127 | kernel/sched.c | if ((*p)->state == TASK_RUNNING && (*p)->counter > c) |
| c | 128 | kernel/sched.c | c = (*p)->counter, next = i; |
| c | 130 | kernel/sched.c | if (c) |
| c | 43 | kernel/vsprintf.c | #define is_digit(c) ((c) >= '0' && (c) <= '9') |
| c | 70 | kernel/vsprintf.c | char c,sign,tmp[36]; |
| c | 78 | kernel/vsprintf.c | c = (type & ZEROPAD) ? '0' : ' ' ; |
| c | 109 | kernel/vsprintf.c | *str++ = c; |
| c | 106 | net/tcp/sock.c | #define swap(a,b) {unsigned long c; c=a; a=b; b=c;} |
| c | 101 | net/tcp/tcp.c | #define swap(a,b) {unsigned long c; c=a; a=b; b=c;} |
| c | 59 | tools/build.c | int i,c,id; |
| c | 129 | tools/build.c | for (i=0 ; (c=read(id,buf,sizeof buf))>0 ; i+=c ) |
| c | 130 | tools/build.c | if (write(1,buf,c)!=c) |
| c | 137 | tools/build.c | for (c=0 ; c<sizeof(buf) ; c++) |
| c | 138 | tools/build.c | buf[c] = '\0'; |
| c | 140 | tools/build.c | c = SETUP_SECTS*512-i; |
| c | 141 | tools/build.c | if (c > sizeof(buf)) |
| c | 142 | tools/build.c | c = sizeof(buf); |
| c | 143 | tools/build.c | if (write(1,buf,c) != c) |
| c | 145 | tools/build.c | i += c; |
| c | 154 | tools/build.c | for (i=0 ; (c=read(id,buf,sizeof buf))>0 ; i+=c ) |
| c | 155 | tools/build.c | if (write(1,buf,c)!=c) |