| tag | line | file | source code |
| c | 68 | fs/ext/dir.c | char c; |
| c | 100 | fs/ext/dir.c | if ((c = de->name[i]) != 0) |
| c | 101 | fs/ext/dir.c | put_fs_byte(c,i+dirent->d_name); |
| c | 199 | fs/ext/file.c | int written,c; |
| c | 227 | fs/ext/file.c | c = BLOCK_SIZE - (pos % BLOCK_SIZE); |
| c | 228 | fs/ext/file.c | if (c > count-written) |
| c | 229 | fs/ext/file.c | c = count-written; |
| c | 230 | fs/ext/file.c | if (c != BLOCK_SIZE && !bh->b_uptodate) { |
| c | 241 | fs/ext/file.c | pos += c; |
| c | 246 | fs/ext/file.c | written += c; |
| c | 247 | fs/ext/file.c | memcpy_fromfs(p,buf,c); |
| c | 248 | fs/ext/file.c | buf += c; |
| c | 625 | fs/ext/namei.c | char c; |
| c | 642 | fs/ext/namei.c | while (i < 1023 && (c = *(symname++))) |
| c | 643 | fs/ext/namei.c | name_block->b_data[i++] = c; |
| c | 89 | fs/ext/symlink.c | char c; |
| c | 102 | fs/ext/symlink.c | while (i<buflen && (c = bh->b_data[i])) { |
| c | 104 | fs/ext/symlink.c | put_fs_byte(c,buffer++); |
| c | 207 | fs/ext2/file.c | int written, c; |
| c | 238 | fs/ext2/file.c | c = sb->s_blocksize - (pos % sb->s_blocksize); |
| c | 239 | fs/ext2/file.c | if (c > count-written) |
| c | 240 | fs/ext2/file.c | c = count - written; |
| c | 241 | fs/ext2/file.c | if (c != sb->s_blocksize && !bh->b_uptodate) { |
| c | 252 | fs/ext2/file.c | pos += c; |
| c | 257 | fs/ext2/file.c | written += c; |
| c | 258 | fs/ext2/file.c | memcpy_fromfs (p, buf, c); |
| c | 259 | fs/ext2/file.c | buf += c; |
| c | 671 | fs/ext2/namei.c | char c; |
| c | 702 | fs/ext2/namei.c | while (i < inode->i_sb->s_blocksize - 1 && (c = *(symname++))) |
| c | 703 | fs/ext2/namei.c | link[i++] = c; |
| c | 97 | fs/ext2/symlink.c | char c; |
| c | 116 | fs/ext2/symlink.c | while (i < buflen && (c = link[i])) { |
| c | 118 | fs/ext2/symlink.c | put_fs_byte (c, buffer++); |
| c | 67 | fs/isofs/dir.c | char c = 0; |
| c | 179 | fs/isofs/dir.c | if (!(c = dpnt[i])) break; |
| c | 180 | fs/isofs/dir.c | if (c >= 'A' && c <= 'Z') c |= 0x20; /* lower case */ |
| c | 181 | fs/isofs/dir.c | if (c == ';' && i == dlen-2 && de->name[i+1] == '1') |
| c | 183 | fs/isofs/dir.c | if (c == ';') c = '.'; /* Convert remaining ';' to '.' */ |
| c | 184 | fs/isofs/dir.c | dpnt[i] = c; |
| c | 75 | fs/isofs/namei.c | char c; |
| c | 155 | fs/isofs/namei.c | c = dpnt[i]; |
| c | 156 | fs/isofs/namei.c | if (c >= 'A' && c <= 'Z') c |= 0x20; /* lower case */ |
| c | 157 | fs/isofs/namei.c | if (c == ';' && i == dlen-2 && dpnt[i+1] == '1') { |
| c | 161 | fs/isofs/namei.c | if (c == ';') c = '.'; |
| c | 162 | fs/isofs/namei.c | de->name[i] = c; |
| c | 83 | fs/isofs/symlink.c | char c; |
| c | 99 | fs/isofs/symlink.c | while (i<buflen && (c = pnt[i])) { |
| c | 101 | fs/isofs/symlink.c | put_fs_byte(c,buffer++); |
| c | 61 | fs/minix/dir.c | char c; |
| c | 84 | fs/minix/dir.c | if ((c = de->name[i]) != 0) |
| c | 85 | fs/minix/dir.c | put_fs_byte(c,i+dirent->d_name); |
| c | 193 | fs/minix/file.c | int written,c; |
| c | 221 | fs/minix/file.c | c = BLOCK_SIZE - (pos % BLOCK_SIZE); |
| c | 222 | fs/minix/file.c | if (c > count-written) |
| c | 223 | fs/minix/file.c | c = count-written; |
| c | 224 | fs/minix/file.c | if (c != BLOCK_SIZE && !bh->b_uptodate) { |
| c | 235 | fs/minix/file.c | pos += c; |
| c | 240 | fs/minix/file.c | written += c; |
| c | 241 | fs/minix/file.c | memcpy_fromfs(p,buf,c); |
| c | 242 | fs/minix/file.c | buf += c; |
| c | 540 | fs/minix/namei.c | char c; |
| c | 557 | fs/minix/namei.c | while (i < 1023 && (c=*(symname++))) |
| c | 558 | fs/minix/namei.c | name_block->b_data[i++] = c; |
| c | 83 | fs/minix/symlink.c | char c; |
| c | 96 | fs/minix/symlink.c | while (i<buflen && (c = bh->b_data[i])) { |
| c | 98 | fs/minix/symlink.c | put_fs_byte(c,buffer++); |
| c | 61 | fs/msdos/dir.c | char c,*walk; |
| c | 84 | fs/msdos/dir.c | if (!(c = de->name[i])) break; |
| c | 85 | fs/msdos/dir.c | if (c >= 'A' && c <= 'Z') c += 32; |
| c | 86 | fs/msdos/dir.c | if (c != ' ') last = i+1; |
| c | 87 | fs/msdos/dir.c | put_fs_byte(c,i+dirent->d_name); |
| c | 93 | fs/msdos/dir.c | if (!(c = de->ext[i2])) break; |
| c | 94 | fs/msdos/dir.c | if (c >= 'A' && c <= 'Z') c += 32; |
| c | 95 | fs/msdos/dir.c | if (c != ' ') last = i+1; |
| c | 96 | fs/msdos/dir.c | put_fs_byte(c,i+dirent->d_name); |
| c | 37 | fs/msdos/namei.c | unsigned char c; |
| c | 48 | fs/msdos/namei.c | c = 0; |
| c | 50 | fs/msdos/namei.c | c = *name++; |
| c | 52 | fs/msdos/namei.c | if (conv != 'r' && strchr(bad_chars,c)) return -EINVAL; |
| c | 53 | fs/msdos/namei.c | if (conv == 's' && strchr(bad_if_strict,c)) return -EINVAL; |
| c | 54 | fs/msdos/namei.c | if (c >= 'A' && c <= 'Z' && conv == 's') return -EINVAL; |
| c | 55 | fs/msdos/namei.c | if (c < ' ' || c == ':' || c == '\\') return -EINVAL; |
| c | 56 | fs/msdos/namei.c | if (c == '.') break; |
| c | 57 | fs/msdos/namei.c | space = c == ' '; |
| c | 58 | fs/msdos/namei.c | *walk = c >= 'a' && c <= 'z' ? c-32 : c; |
| c | 61 | fs/msdos/namei.c | if (conv == 's' && len && c != '.') { |
| c | 62 | fs/msdos/namei.c | c = *name++; |
| c | 64 | fs/msdos/namei.c | if (c != '.') return -EINVAL; |
| c | 66 | fs/msdos/namei.c | while (c != '.' && len--) c = *name++; |
| c | 67 | fs/msdos/namei.c | if (c == '.') { |
| c | 70 | fs/msdos/namei.c | c = *name++; |
| c | 72 | fs/msdos/namei.c | if (conv != 'r' && strchr(bad_chars,c)) return -EINVAL; |
| c | 73 | fs/msdos/namei.c | if (conv == 's' && strchr(bad_if_strict,c)) |
| c | 75 | fs/msdos/namei.c | if (c < ' ' || c == ':' || c == '\\' || c == '.') |
| c | 77 | fs/msdos/namei.c | if (c >= 'A' && c <= 'Z' && conv == 's') return -EINVAL; |
| c | 78 | fs/msdos/namei.c | space = c == ' '; |
| c | 79 | fs/msdos/namei.c | *walk++ = c >= 'a' && c <= 'z' ? c-32 : c; |
| c | 33 | fs/namei.c | char * tmp, c; |
| c | 44 | fs/namei.c | c = get_fs_byte(filename++); |
| c | 45 | fs/namei.c | if (!c) |
| c | 51 | fs/namei.c | *(tmp++) = c; |
| c | 52 | fs/namei.c | c = get_fs_byte(filename++); |
| c | 53 | fs/namei.c | if (!c) { |
| c | 162 | fs/namei.c | char c; |
| c | 172 | fs/namei.c | if ((c = *pathname) == '/') { |
| c | 180 | fs/namei.c | for(len=0;(c = *(pathname++))&&(c != '/');len++) |
| c | 182 | fs/namei.c | if (!c) |
| c | 86 | fs/nfs/symlink.c | char c; |
| c | 103 | fs/nfs/symlink.c | for (i = 0; i < buflen && (c = res[i]); i++) |
| c | 104 | fs/nfs/symlink.c | put_fs_byte(c,buffer++); |
| c | 28 | fs/proc/array.c | int a, b, c; |
| c | 32 | fs/proc/array.c | c = avenrun[2] + (FIXED_1/200); |
| c | 36 | fs/proc/array.c | LOAD_INT(c), LOAD_FRAC(c)); |
| c | 109 | fs/proc/array.c | char c; |
| c | 118 | fs/proc/array.c | c = *(char *) addr; |
| c | 119 | fs/proc/array.c | if (!c) |
| c | 122 | fs/proc/array.c | buffer[size++] = c; |
| c | 56 | fs/proc/fd.c | unsigned int ino, pid, fd, c; |
| c | 89 | fs/proc/fd.c | c = *name - '0'; |
| c | 91 | fs/proc/fd.c | if (c > 9) { |
| c | 96 | fs/proc/fd.c | fd += c; |
| c | 74 | fs/proc/root.c | unsigned int pid, c; |
| c | 98 | fs/proc/root.c | c = *name - '0'; |
| c | 100 | fs/proc/root.c | if (c > 9) { |
| c | 105 | fs/proc/root.c | pid += c; |
| c | 192 | fs/xiafs/file.c | int written, c; |
| c | 220 | fs/xiafs/file.c | c = XIAFS_ZSIZE(inode->i_sb) - (pos & (XIAFS_ZSIZE(inode->i_sb) - 1)); |
| c | 221 | fs/xiafs/file.c | if (c > count-written) |
| c | 222 | fs/xiafs/file.c | c = count-written; |
| c | 223 | fs/xiafs/file.c | if (c != XIAFS_ZSIZE(inode->i_sb) && !bh->b_uptodate) { |
| c | 234 | fs/xiafs/file.c | pos += c; |
| c | 239 | fs/xiafs/file.c | written += c; |
| c | 240 | fs/xiafs/file.c | memcpy_fromfs(cp,buf,c); |
| c | 241 | fs/xiafs/file.c | buf += c; |
| c | 585 | fs/xiafs/namei.c | char c; |
| c | 607 | fs/xiafs/namei.c | for (i = 0; i < BLOCK_SIZE-1 && (c=*symname++); i++) |
| c | 608 | fs/xiafs/namei.c | name_block->b_data[i] = c; |
| c | 51 | fs/xiafs/symlink.c | char c; |
| c | 67 | fs/xiafs/symlink.c | for (i=0; i < buflen && (c=bh->b_data[i]); i++) |
| c | 68 | fs/xiafs/symlink.c | put_fs_byte(c, buffer++); |
| c | 135 | include/linux/cdu31a.h | #define SONY_HWC_GET_LOAD_MECH(c) (c.hw_config[0] & 0x03) |
| c | 136 | include/linux/cdu31a.h | #define SONY_HWC_EJECT(c) (c.hw_config[0] & 0x04) |
| c | 137 | include/linux/cdu31a.h | #define SONY_HWC_LED_SUPPORT(c) (c.hw_config[0] & 0x08) |
| c | 138 | include/linux/cdu31a.h | #define SONY_HWC_GET_BUF_MEM_SIZE(c) ((c.hw_config[0] & 0xc0) >> 6) |
| c | 139 | include/linux/cdu31a.h | #define SONY_HWC_AUDIO_PLAYBACK(c) (c.hw_config[1] & 0x01) |
| c | 140 | include/linux/cdu31a.h | #define SONY_HWC_ELECTRIC_VOLUME(c) (c.hw_config[1] & 0x02) |
| c | 141 | include/linux/cdu31a.h | #define SONY_HWC_ELECTRIC_VOLUME_CTL(c) (c.hw_config[1] & 0x04) |
| 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 | 33 | include/linux/ioctl.h | #define _IO(c,d) (IOC_VOID | ((c)<<8) | (d)) /* param encoded */ |
| c | 38 | include/linux/ioctl.h | #define _IOW(c,d,t) (IOC_IN | ((sizeof(t)<<16) & IOCSIZE_MASK) | \ |
| c | 39 | include/linux/ioctl.h | ((c)<<8) | (d)) |
| c | 40 | include/linux/ioctl.h | #define _IOR(c,d,t) (IOC_OUT | ((sizeof(t)<<16) & IOCSIZE_MASK) | \ |
| c | 41 | include/linux/ioctl.h | ((c)<<8) | (d)) |
| c | 43 | include/linux/ioctl.h | #define _IOWR(c,d,t) (IOC_INOUT | ((sizeof(t)<<16) & IOCSIZE_MASK) | \ |
| c | 44 | include/linux/ioctl.h | ((c)<<8) | (d)) |
| c | 127 | include/linux/string.h | extern inline char * strchr(const char * s,char c) |
| c | 140 | include/linux/string.h | :"=a" (__res):"S" (s),"0" (c):"si"); |
| c | 144 | include/linux/string.h | extern inline char * strrchr(const char * s,char c) |
| c | 156 | include/linux/string.h | :"=d" (__res):"0" (0),"S" (s),"a" (c):"ax","si"); |
| c | 390 | include/linux/string.h | extern inline void * memchr(const void * cs,char c,size_t count) |
| c | 401 | include/linux/string.h | :"=D" (__res):"a" (c),"D" (cs),"c" (count) |
| c | 406 | include/linux/string.h | extern inline void * memset(void * s,char c,size_t count) |
| c | 412 | include/linux/string.h | :"a" (c),"D" (s),"c" (count) |
| c | 144 | include/linux/tty.h | extern void put_tty_queue(char c, struct tty_queue * queue); |
| c | 176 | include/linux/unistd.h | #define _syscall3(type,name,atype,a,btype,b,ctype,c) \ |
| c | 177 | include/linux/unistd.h | type name(atype a,btype b,ctype c) \ |
| c | 182 | include/linux/unistd.h | : "0" (__NR_##name),"b" ((long)(a)),"c" ((long)(b)),"d" ((long)(c))); \ |
| c | 189 | include/linux/unistd.h | #define _syscall4(type,name,atype,a,btype,b,ctype,c,dtype,d) \ |
| c | 190 | include/linux/unistd.h | type name (atype a, btype b, ctype c, dtype d) \ |
| c | 196 | include/linux/unistd.h | "d" ((long)(c)),"S" ((long)(d))); \ |
| c | 203 | include/linux/unistd.h | #define _syscall5(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e) \ |
| c | 204 | include/linux/unistd.h | type name (atype a,btype b,ctype c,dtype d,etype e) \ |
| c | 210 | include/linux/unistd.h | "d" ((long)(c)),"S" ((long)(d)),"D" ((long)(e))); \ |
| c | 92 | kernel/FPU-emu/fpu_etc.c | int c=0; |
| c | 96 | kernel/FPU-emu/fpu_etc.c | c = SW_C3|SW_C0; |
| c | 99 | kernel/FPU-emu/fpu_etc.c | c = SW_C3; |
| c | 104 | kernel/FPU-emu/fpu_etc.c | c = SW_C2|SW_C3; /* Denormal */ |
| c | 106 | kernel/FPU-emu/fpu_etc.c | c = SW_C2; |
| c | 109 | kernel/FPU-emu/fpu_etc.c | c = SW_C0; |
| c | 112 | kernel/FPU-emu/fpu_etc.c | c = SW_C2|SW_C0; |
| c | 116 | kernel/FPU-emu/fpu_etc.c | c |= SW_C1; |
| c | 117 | kernel/FPU-emu/fpu_etc.c | setcc(c); |
| c | 173 | kernel/FPU-emu/reg_compare.c | int f, c; |
| c | 175 | kernel/FPU-emu/reg_compare.c | c = compare(&FPU_loaded_data); |
| c | 177 | kernel/FPU-emu/reg_compare.c | if (c & COMP_NaN) |
| c | 183 | kernel/FPU-emu/reg_compare.c | switch (c & 7) |
| c | 205 | kernel/FPU-emu/reg_compare.c | if (c & COMP_Denormal) |
| c | 215 | kernel/FPU-emu/reg_compare.c | int f, c; |
| c | 225 | kernel/FPU-emu/reg_compare.c | c = compare(&st(nr)); |
| c | 226 | kernel/FPU-emu/reg_compare.c | if (c & COMP_NaN) |
| c | 233 | kernel/FPU-emu/reg_compare.c | switch (c & 7) |
| c | 255 | kernel/FPU-emu/reg_compare.c | if (c & COMP_Denormal) |
| c | 265 | kernel/FPU-emu/reg_compare.c | int f, c; |
| c | 275 | kernel/FPU-emu/reg_compare.c | c = compare(&st(nr)); |
| c | 276 | kernel/FPU-emu/reg_compare.c | if (c & COMP_NaN) |
| c | 279 | kernel/FPU-emu/reg_compare.c | if (c & COMP_SNaN) /* This is the only difference between |
| c | 288 | kernel/FPU-emu/reg_compare.c | switch (c & 7) |
| c | 310 | kernel/FPU-emu/reg_compare.c | if (c & COMP_Denormal) |
| c | 59 | kernel/FPU-emu/reg_constant.c | static void fld_const(FPU_REG *c) |
| c | 69 | kernel/FPU-emu/reg_constant.c | reg_move(c, FPU_st0_ptr); |
| c | 193 | kernel/FPU-emu/reg_ld_str.c | int c = FPU_loaded_data.sign; |
| c | 195 | kernel/FPU-emu/reg_ld_str.c | FPU_loaded_data.sign = c; |
| c | 241 | kernel/FPU-emu/reg_ld_str.c | int c = FPU_loaded_data.sign; |
| c | 243 | kernel/FPU-emu/reg_ld_str.c | FPU_loaded_data.sign = c; |
| c | 220 | kernel/blk_drv/hd.c | unsigned char c; |
| c | 223 | kernel/blk_drv/hd.c | c = inb_p(HD_STATUS); |
| c | 224 | kernel/blk_drv/hd.c | c &= (BUSY_STAT | READY_STAT | SEEK_STAT); |
| c | 225 | kernel/blk_drv/hd.c | if (c == (READY_STAT | SEEK_STAT)) |
| c | 228 | kernel/blk_drv/hd.c | printk("HD controller times out, status = 0x%02x\n",c); |
| c | 448 | kernel/blk_drv/mcd.c | int a, b, c, d; |
| c | 452 | kernel/blk_drv/mcd.c | getValue(&c); |
| c | 454 | kernel/blk_drv/mcd.c | printk("%02X %02X %02X %02X\n", a, b, c, d); |
| 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 | 958 | kernel/chr_drv/console.c | int c; |
| c | 973 | kernel/chr_drv/console.c | while (!tty->stopped && (c = get_tty_queue(&tty->write_q)) >= 0) { |
| c | 974 | kernel/chr_drv/console.c | if (state == ESnormal && translate[c]) { |
| c | 981 | kernel/chr_drv/console.c | c = translate[c]; |
| c | 982 | kernel/chr_drv/console.c | *(unsigned short *) pos = (attr << 8) + c; |
| c | 996 | kernel/chr_drv/console.c | switch (c) { |
| c | 1043 | kernel/chr_drv/console.c | switch (c) { |
| c | 1094 | kernel/chr_drv/console.c | if (c == '[') { /* Function key */ |
| c | 1098 | kernel/chr_drv/console.c | ques = (c=='?'); |
| c | 1102 | kernel/chr_drv/console.c | if (c==';' && npar<NPAR-1) { |
| c | 1105 | kernel/chr_drv/console.c | } else if (c>='0' && c<='9') { |
| c | 1107 | kernel/chr_drv/console.c | par[npar] += c-'0'; |
| c | 1112 | kernel/chr_drv/console.c | switch(c) { |
| c | 1131 | kernel/chr_drv/console.c | switch(c) { |
| c | 1234 | kernel/chr_drv/console.c | if (c == '8') { |
| c | 1244 | kernel/chr_drv/console.c | if (c == '0') |
| c | 1246 | kernel/chr_drv/console.c | else if (c == 'B') |
| c | 1248 | kernel/chr_drv/console.c | else if (c == 'U') |
| c | 1255 | kernel/chr_drv/console.c | if (c == '0') |
| c | 1257 | kernel/chr_drv/console.c | else if (c == 'B') |
| c | 1259 | kernel/chr_drv/console.c | else if (c == 'U') |
| c | 1289 | kernel/chr_drv/console.c | void * memsetw(void * s,unsigned short c,int count) |
| c | 1295 | kernel/chr_drv/console.c | :"a" (c),"D" (s),"c" (count) |
| c | 1303 | kernel/chr_drv/console.c | unsigned char c; |
| c | 1307 | kernel/chr_drv/console.c | while ((c = *(b++)) != 0) { |
| c | 1308 | kernel/chr_drv/console.c | if (c == 10 || c == 13 || need_wrap) { |
| c | 1309 | kernel/chr_drv/console.c | if (c != 13) |
| c | 1312 | kernel/chr_drv/console.c | if (c == 10 || c == 13) |
| c | 1315 | kernel/chr_drv/console.c | *(unsigned short *) pos = (attr << 8) + c; |
| c | 1574 | kernel/chr_drv/console.c | static inline int inword(const char c) { return (isalnum(c) || c == '_'); } |
| c | 194 | kernel/chr_drv/lp.c | char c, *temp = buf; |
| c | 206 | kernel/chr_drv/lp.c | c = get_fs_byte(temp); |
| c | 207 | kernel/chr_drv/lp.c | retval = lp_char_polled(c, minor); |
| c | 375 | kernel/chr_drv/psaux.c | unsigned char c; |
| c | 391 | kernel/chr_drv/psaux.c | c = get_from_queue(); |
| c | 392 | kernel/chr_drv/psaux.c | put_fs_byte(c, buffer++); |
| c | 52 | kernel/chr_drv/pty.c | int c; |
| c | 61 | kernel/chr_drv/pty.c | c = get_tty_queue(&from->write_q); |
| c | 62 | kernel/chr_drv/pty.c | put_tty_queue(c, &to->read_q); |
| c | 2327 | kernel/chr_drv/tpqic02.c | int c; |
| c | 2350 | kernel/chr_drv/tpqic02.c | c = iocmd & IOCCMD_MASK; |
| c | 2351 | kernel/chr_drv/tpqic02.c | if (c == (MTIOCTOP & IOCCMD_MASK)) { |
| c | 2405 | kernel/chr_drv/tpqic02.c | } else if (c == (MTIOCGET & IOCCMD_MASK)) { |
| c | 2433 | kernel/chr_drv/tpqic02.c | } else if (c == (MTIOCPOS & IOCCMD_MASK)) { |
| c | 2452 | kernel/chr_drv/tpqic02.c | c = rdstatus((char *) blk_addr, sizeof(blk_addr), QCMDV_TELL_BLK); |
| c | 2453 | kernel/chr_drv/tpqic02.c | if (c!=TE_OK) |
| c | 97 | kernel/chr_drv/tty_io.c | void put_tty_queue(char c, struct tty_queue * queue) |
| c | 106 | kernel/chr_drv/tty_io.c | queue->buf[queue->head] = c; |
| c | 479 | kernel/chr_drv/tty_io.c | int c, special_flag; |
| c | 496 | kernel/chr_drv/tty_io.c | c = LEFT(&tty->secondary); |
| c | 497 | kernel/chr_drv/tty_io.c | if (tty->throttle && (c < SQ_THRESHOLD_LW) |
| c | 500 | kernel/chr_drv/tty_io.c | if (c == 0) |
| c | 504 | kernel/chr_drv/tty_io.c | c = 0xff & tty->read_q.buf[tty->read_q.tail]; |
| c | 515 | kernel/chr_drv/tty_io.c | tty->char_error = c & 3; |
| c | 538 | kernel/chr_drv/tty_io.c | put_tty_queue(c, &tty->secondary); |
| c | 544 | kernel/chr_drv/tty_io.c | c &= 0x7f; |
| c | 545 | kernel/chr_drv/tty_io.c | else if (I_PARMRK(tty) && (c == '\377')) |
| c | 547 | kernel/chr_drv/tty_io.c | if (c==13) { |
| c | 549 | kernel/chr_drv/tty_io.c | c=10; |
| c | 552 | kernel/chr_drv/tty_io.c | } else if (c==10 && I_NLCR(tty)) |
| c | 553 | kernel/chr_drv/tty_io.c | c=13; |
| c | 555 | kernel/chr_drv/tty_io.c | c=tolower(c); |
| c | 556 | kernel/chr_drv/tty_io.c | if (c == __DISABLED_CHAR) |
| c | 559 | kernel/chr_drv/tty_io.c | if (c == KILL_CHAR(tty) || c == WERASE_CHAR(tty)) { |
| c | 561 | kernel/chr_drv/tty_io.c | (c == WERASE_CHAR(tty)) ? 0 : -1; |
| c | 565 | kernel/chr_drv/tty_io.c | (c=LAST(&tty->secondary))==10 || |
| c | 567 | kernel/chr_drv/tty_io.c | (c==EOF_CHAR(tty))))) { |
| c | 572 | kernel/chr_drv/tty_io.c | if (isalnum(c)) |
| c | 578 | kernel/chr_drv/tty_io.c | if (c<32) { |
| c | 591 | kernel/chr_drv/tty_io.c | if (c == ERASE_CHAR(tty)) { |
| c | 593 | kernel/chr_drv/tty_io.c | (c=LAST(&tty->secondary))==10 || |
| c | 595 | kernel/chr_drv/tty_io.c | (c==EOF_CHAR(tty)))) |
| c | 598 | kernel/chr_drv/tty_io.c | if (c<32) { |
| c | 610 | kernel/chr_drv/tty_io.c | if (c == LNEXT_CHAR(tty)) { |
| c | 620 | kernel/chr_drv/tty_io.c | if (c == STOP_CHAR(tty)) { |
| c | 633 | kernel/chr_drv/tty_io.c | (c == START_CHAR(tty))) { |
| c | 647 | kernel/chr_drv/tty_io.c | if (c == INTR_CHAR(tty)) { |
| c | 655 | kernel/chr_drv/tty_io.c | if (c == QUIT_CHAR(tty)) { |
| c | 663 | kernel/chr_drv/tty_io.c | if (c == SUSPEND_CHAR(tty)) { |
| c | 674 | kernel/chr_drv/tty_io.c | if (c==10 || (EOF_CHAR(tty) != __DISABLED_CHAR && |
| c | 675 | kernel/chr_drv/tty_io.c | c==EOF_CHAR(tty))) |
| c | 677 | kernel/chr_drv/tty_io.c | if ((c==10) && (L_ECHO(tty) || (L_CANON(tty) && L_ECHONL(tty)))) { |
| c | 681 | kernel/chr_drv/tty_io.c | if (c<32 && L_ECHOCTL(tty)) { |
| c | 683 | kernel/chr_drv/tty_io.c | put_tty_queue(c+'A'-1, &tty->write_q); |
| c | 685 | kernel/chr_drv/tty_io.c | c==EOF_CHAR(tty) && !tty->lnext) { |
| c | 690 | kernel/chr_drv/tty_io.c | put_tty_queue(c, &tty->write_q); |
| c | 693 | kernel/chr_drv/tty_io.c | put_tty_queue(c, &tty->secondary); |
| c | 729 | kernel/chr_drv/tty_io.c | int c; |
| c | 786 | kernel/chr_drv/tty_io.c | while (nr > 0 && ((c = get_tty_queue(&tty->secondary)) >= 0)) { |
| c | 788 | kernel/chr_drv/tty_io.c | c==EOF_CHAR(tty)) || c==10) |
| c | 791 | kernel/chr_drv/tty_io.c | c==EOF_CHAR(tty)) && L_CANON(tty)) |
| c | 793 | kernel/chr_drv/tty_io.c | put_fs_byte(c,b++); |
| c | 797 | kernel/chr_drv/tty_io.c | if (c==10 && L_CANON(tty)) |
| c | 896 | kernel/chr_drv/tty_io.c | char c, *b=buf; |
| c | 922 | kernel/chr_drv/tty_io.c | c=get_fs_byte(b); |
| c | 924 | kernel/chr_drv/tty_io.c | switch (c) { |
| c | 931 | kernel/chr_drv/tty_io.c | c = '\r'; |
| c | 945 | kernel/chr_drv/tty_io.c | c = '\n'; |
| c | 954 | kernel/chr_drv/tty_io.c | c = ' '; |
| c | 966 | kernel/chr_drv/tty_io.c | c = toupper(c); |
| c | 972 | kernel/chr_drv/tty_io.c | put_tty_queue(c,&tty->write_q); |
| c | 110 | kernel/chr_drv/tty_ioctl.c | char *c, *d; |
| c | 119 | kernel/chr_drv/tty_ioctl.c | c = (char *)(*p); |
| c | 122 | kernel/chr_drv/tty_ioctl.c | put_fs_byte(*c++, d++); |
| c | 340 | kernel/chr_drv/tty_ioctl.c | char c, * tmp; |
| c | 347 | kernel/chr_drv/tty_ioctl.c | c = get_fs_byte(i + (char *) ws); |
| c | 348 | kernel/chr_drv/tty_ioctl.c | if (c == *tmp) |
| c | 351 | kernel/chr_drv/tty_ioctl.c | *tmp = c; |
| c | 54 | kernel/printk.c | char c; |
| c | 81 | kernel/printk.c | c = *((char *) log_buf+log_start); |
| c | 86 | kernel/printk.c | put_fs_byte(c,buf); |
| c | 107 | kernel/printk.c | c = *((char *) log_buf+(j++ & (LOG_BUF_LEN-1))); |
| c | 108 | kernel/printk.c | put_fs_byte(c, buf++); |
| c | 120 | kernel/sched.c | int c; |
| c | 156 | kernel/sched.c | c = -1; |
| c | 161 | kernel/sched.c | if (p->state == TASK_RUNNING && p->counter > c) |
| c | 162 | kernel/sched.c | c = p->counter, next = p; |
| c | 165 | 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 | 120 | net/drv/slip/slip.c | register unsigned char c; |
| c | 127 | net/drv/slip/slip.c | c = (get_tty_queue(&tty->read_q) & 0377); |
| c | 128 | net/drv/slip/slip.c | *buf++ = c; |
| c | 129 | net/drv/slip/slip.c | PRINTK ((" %02x", (int) (c & 255))); |
| c | 223 | net/drv/slip/slip.c | put_sl_queue(struct sl_queue * queue, char c) |
| c | 231 | net/drv/slip/slip.c | queue->buf[queue->head] = c; |
| c | 481 | net/drv/slip/slip.c | unsigned char c; |
| c | 495 | net/drv/slip/slip.c | c = *p++; |
| c | 496 | net/drv/slip/slip.c | switch(c) { |
| c | 501 | net/drv/slip/slip.c | if (sl->escape) c = ESC; |
| c | 502 | net/drv/slip/slip.c | put_sl_queue(&sl->rcv_queue, c); |
| c | 507 | net/drv/slip/slip.c | if (sl->escape) c = END; |
| c | 508 | net/drv/slip/slip.c | put_sl_queue(&sl->rcv_queue, c); |
| c | 526 | net/drv/slip/slip.c | put_sl_queue(&sl->rcv_queue, c); |
| c | 198 | net/inet/slip.c | sl_enqueue(struct slip *sl, unsigned char c) |
| c | 205 | net/inet/slip.c | *sl->rhead = c; |
| c | 261 | net/inet/slip.c | unsigned char c; |
| c | 267 | net/inet/slip.c | if ((c = sl->rbuff[0]) & SL_TYPE_COMPRESSED_TCP) { |
| c | 288 | net/inet/slip.c | } else if (c >= SL_TYPE_UNCOMPRESSED_TCP) { |
| c | 328 | net/inet/slip.c | unsigned char c; |
| c | 354 | net/inet/slip.c | c = *p++; |
| c | 355 | net/inet/slip.c | switch(c) { |
| c | 367 | net/inet/slip.c | *bp++ = c; |
| c | 555 | net/inet/slip.c | unsigned char *p, c; |
| c | 569 | net/inet/slip.c | c = *p++; |
| c | 571 | net/inet/slip.c | if (c == ESC_ESC) |
| c | 573 | net/inet/slip.c | else if (c == ESC_END) |
| c | 579 | net/inet/slip.c | if (c == ESC) |
| c | 581 | net/inet/slip.c | else if (c == END) { |
| c | 585 | net/inet/slip.c | } else sl_enqueue(sl, c); |
| c | 1450 | net/inet/sock.c | void *c = kmalloc(size, priority); |
| c | 1452 | net/inet/sock.c | if (c) sk->rmem_alloc += size; |
| c | 1454 | net/inet/sock.c | return(c); |
| c | 87 | tools/build.c | int i,c,id, sz; |
| c | 166 | tools/build.c | for (i=0 ; (c=read(id,buf,sizeof buf))>0 ; i+=c ) |
| c | 167 | tools/build.c | if (write(1,buf,c)!=c) |
| c | 169 | tools/build.c | if (c != 0) |
| c | 176 | tools/build.c | for (c=0 ; c<sizeof(buf) ; c++) |
| c | 177 | tools/build.c | buf[c] = '\0'; |
| c | 179 | tools/build.c | c = SETUP_SECTS*512-i; |
| c | 180 | tools/build.c | if (c > sizeof(buf)) |
| c | 181 | tools/build.c | c = sizeof(buf); |
| c | 182 | tools/build.c | if (write(1,buf,c) != c) |
| c | 184 | tools/build.c | i += c; |
| c | 188 | zBoot/gzip.h | #define put_byte(c) {outbuf[outcnt++]=(uch)(c); if (outcnt==OUTBUFSIZ)\ |
| c | 190 | zBoot/gzip.h | #define put_char(c) {window[outcnt++]=(uch)(c); if (outcnt==WSIZE)\ |
| c | 213 | zBoot/gzip.h | #define tolow(c) (isupper(c) ? (c)-'A'+'a' : (c)) /* force to lower case */ |
| c | 225 | zBoot/gzip.h | # define Tracec(c,x) {if (verbose && (c)) fprintf x ;} |
| c | 226 | zBoot/gzip.h | # define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;} |
| c | 232 | zBoot/gzip.h | # define Tracec(c,x) |
| c | 233 | zBoot/gzip.h | # define Tracecv(c,x) |
| c | 114 | zBoot/inflate.c | unsigned c[BMAX+1]; /* bit length count table */ |
| c | 136 | zBoot/inflate.c | memzero(c, sizeof(c)); |
| c | 139 | zBoot/inflate.c | c[*p++]++; /* assume all entries <= BMAX */ |
| c | 141 | zBoot/inflate.c | if (c[0] == n) /* null input--all zero length codes */ |
| c | 153 | zBoot/inflate.c | if (c[j]) |
| c | 159 | zBoot/inflate.c | if (c[i]) |
| c | 170 | zBoot/inflate.c | if ((y -= c[j]) < 0) |
| c | 172 | zBoot/inflate.c | if ((y -= c[i]) < 0) |
| c | 174 | zBoot/inflate.c | c[i] += y; |
| c | 180 | zBoot/inflate.c | p = c + 1; xp = x + 2; |
| c | 210 | zBoot/inflate.c | a = c[k]; |
| c | 228 | zBoot/inflate.c | xp = c + k; |
| c | 116 | zBoot/misc.c | char c; |
| c | 121 | zBoot/misc.c | while ( ( c = *s++ ) != '\0' ) { |
| c | 122 | zBoot/misc.c | if ( c == '\n' ) { |
| c | 129 | zBoot/misc.c | vidmem [ ( x + cols * y ) * 2 ] = c; |
| c | 144 | zBoot/misc.c | __ptr_t memset(__ptr_t s, int c, size_t n) |
| c | 149 | zBoot/misc.c | for (i=0;i<n;i++) ss[i] = c; |
| c | 172 | zBoot/misc.c | register ulg c; /* temporary variable */ |
| c | 177 | zBoot/misc.c | c = 0xffffffffL; |
| c | 179 | zBoot/misc.c | c = crc; |
| c | 181 | zBoot/misc.c | c = crc_32_tab[((int)c ^ (*s++)) & 0xff] ^ (c >> 8); |
| c | 184 | zBoot/misc.c | crc = c; |
| c | 185 | zBoot/misc.c | return c ^ 0xffffffffL; /* (instead of ~c for 64-bit machines) */ |
| c | 254 | zBoot/misc.c | unsigned long c; /* crc shift register */ |
| c | 271 | zBoot/misc.c | c = 0; |
| c | 274 | zBoot/misc.c | c = c & 1 ? (c >> 1) ^ e : c >> 1; |
| c | 276 | zBoot/misc.c | c ^= e; |
| c | 278 | zBoot/misc.c | crc_32_tab[i] = c; |
| c | 18 | zBoot/piggyback.c | int c, n=0, len=0; |
| c | 133 | zBoot/unzip.c | uch c = (uch)get_byte(); |
| c | 135 | zBoot/unzip.c | if (decrypt) zdecode(c); |
| c | 137 | zBoot/unzip.c | if (!test) put_char(c); |
| c | 38 | zBoot/xtract.c | int i,c,id, sz; |