tag | line | file | source code |
chars | 108 | arch/i386/kernel/bios32.c | char chars[16]; |
chars | 758 | arch/i386/kernel/bios32.c | sum += check->chars[i]; |
chars | 28 | fs/block_dev.c | int chars; |
chars | 66 | fs/block_dev.c | chars = blocksize - offset; |
chars | 67 | fs/block_dev.c | if (chars > count) |
chars | 68 | fs/block_dev.c | chars=count; |
chars | 71 | fs/block_dev.c | if (chars == blocksize) |
chars | 82 | fs/block_dev.c | if (chars != blocksize && !bh->b_uptodate) { |
chars | 120 | fs/block_dev.c | filp->f_pos += chars; |
chars | 121 | fs/block_dev.c | written += chars; |
chars | 122 | fs/block_dev.c | count -= chars; |
chars | 123 | fs/block_dev.c | memcpy_fromfs(p,buf,chars); |
chars | 124 | fs/block_dev.c | p += chars; |
chars | 125 | fs/block_dev.c | buf += chars; |
chars | 173 | fs/block_dev.c | unsigned int chars; |
chars | 281 | fs/block_dev.c | chars = left; |
chars | 283 | fs/block_dev.c | chars = blocksize - offset; |
chars | 284 | fs/block_dev.c | filp->f_pos += chars; |
chars | 285 | fs/block_dev.c | left -= chars; |
chars | 286 | fs/block_dev.c | read += chars; |
chars | 288 | fs/block_dev.c | memcpy_tofs(buf,offset+(*bhe)->b_data,chars); |
chars | 290 | fs/block_dev.c | buf += chars; |
chars | 292 | fs/block_dev.c | while (chars-->0) |
chars | 74 | fs/ext/file.c | int read,left,chars; |
chars | 161 | fs/ext/file.c | chars = left; |
chars | 163 | fs/ext/file.c | chars = BLOCK_SIZE - offset; |
chars | 164 | fs/ext/file.c | filp->f_pos += chars; |
chars | 165 | fs/ext/file.c | left -= chars; |
chars | 166 | fs/ext/file.c | read += chars; |
chars | 168 | fs/ext/file.c | memcpy_tofs(buf,offset+(*bhe)->b_data,chars); |
chars | 170 | fs/ext/file.c | buf += chars; |
chars | 172 | fs/ext/file.c | while (chars-->0) |
chars | 82 | fs/ext2/file.c | int read, left, chars; |
chars | 191 | fs/ext2/file.c | chars = left; |
chars | 193 | fs/ext2/file.c | chars = sb->s_blocksize - offset; |
chars | 194 | fs/ext2/file.c | filp->f_pos += chars; |
chars | 195 | fs/ext2/file.c | left -= chars; |
chars | 196 | fs/ext2/file.c | read += chars; |
chars | 199 | fs/ext2/file.c | chars); |
chars | 201 | fs/ext2/file.c | buf += chars; |
chars | 203 | fs/ext2/file.c | while (chars-- > 0) |
chars | 79 | fs/isofs/file.c | static inline void unixify_to_fs(char * outbuf, char * buffer, int chars, |
chars | 84 | fs/isofs/file.c | while(chars--){ |
chars | 125 | fs/isofs/file.c | int read,left,chars; |
chars | 226 | fs/isofs/file.c | chars = left; |
chars | 228 | fs/isofs/file.c | chars = ISOFS_BUFFER_SIZE(inode) - offset; |
chars | 229 | fs/isofs/file.c | filp->f_pos += chars; |
chars | 230 | fs/isofs/file.c | left -= chars; |
chars | 231 | fs/isofs/file.c | read += chars; |
chars | 235 | fs/isofs/file.c | unixify_to_fs(buf, offset+(*bhe)->b_data, chars, |
chars | 238 | fs/isofs/file.c | memcpy_tofs(buf,offset+(*bhe)->b_data,chars); |
chars | 240 | fs/isofs/file.c | buf += chars; |
chars | 242 | fs/isofs/file.c | while (chars-->0) |
chars | 72 | fs/minix/file.c | int read,left,chars; |
chars | 159 | fs/minix/file.c | chars = left; |
chars | 161 | fs/minix/file.c | chars = BLOCK_SIZE - offset; |
chars | 162 | fs/minix/file.c | filp->f_pos += chars; |
chars | 163 | fs/minix/file.c | left -= chars; |
chars | 164 | fs/minix/file.c | read += chars; |
chars | 166 | fs/minix/file.c | memcpy_tofs(buf,offset+(*bhe)->b_data,chars); |
chars | 168 | fs/minix/file.c | buf += chars; |
chars | 170 | fs/minix/file.c | while (chars-->0) |
chars | 27 | fs/pipe.c | int chars = 0, size = 0, read = 0; |
chars | 49 | fs/pipe.c | chars = PIPE_MAX_RCHUNK(*inode); |
chars | 50 | fs/pipe.c | if (chars > count) |
chars | 51 | fs/pipe.c | chars = count; |
chars | 52 | fs/pipe.c | if (chars > size) |
chars | 53 | fs/pipe.c | chars = size; |
chars | 54 | fs/pipe.c | read += chars; |
chars | 56 | fs/pipe.c | PIPE_START(*inode) += chars; |
chars | 58 | fs/pipe.c | PIPE_LEN(*inode) -= chars; |
chars | 59 | fs/pipe.c | count -= chars; |
chars | 60 | fs/pipe.c | memcpy_tofs(buf, pipebuf, chars ); |
chars | 61 | fs/pipe.c | buf += chars; |
chars | 74 | fs/pipe.c | int chars = 0, free = 0, written = 0; |
chars | 100 | fs/pipe.c | chars = PIPE_MAX_WCHUNK(*inode); |
chars | 101 | fs/pipe.c | if (chars > count) |
chars | 102 | fs/pipe.c | chars = count; |
chars | 103 | fs/pipe.c | if (chars > free) |
chars | 104 | fs/pipe.c | chars = free; |
chars | 106 | fs/pipe.c | written += chars; |
chars | 107 | fs/pipe.c | PIPE_LEN(*inode) += chars; |
chars | 108 | fs/pipe.c | count -= chars; |
chars | 109 | fs/pipe.c | memcpy_fromfs(pipebuf, buf, chars ); |
chars | 110 | fs/pipe.c | buf += chars; |
chars | 79 | fs/sysv/file.c | int read,left,chars; |
chars | 167 | fs/sysv/file.c | chars = left; |
chars | 169 | fs/sysv/file.c | chars = sb->sv_block_size - offset; |
chars | 170 | fs/sysv/file.c | filp->f_pos += chars; |
chars | 171 | fs/sysv/file.c | left -= chars; |
chars | 172 | fs/sysv/file.c | read += chars; |
chars | 174 | fs/sysv/file.c | memcpy_tofs(buf,offset+(*bhe)->b_data,chars); |
chars | 176 | fs/sysv/file.c | buf += chars; |
chars | 178 | fs/sysv/file.c | while (chars-- > 0) |
chars | 76 | fs/xiafs/file.c | int read, left, chars; |
chars | 157 | fs/xiafs/file.c | chars = left; |
chars | 159 | fs/xiafs/file.c | chars = XIAFS_ZSIZE(inode->i_sb) - offset; |
chars | 160 | fs/xiafs/file.c | filp->f_pos += chars; |
chars | 161 | fs/xiafs/file.c | left -= chars; |
chars | 162 | fs/xiafs/file.c | read += chars; |
chars | 164 | fs/xiafs/file.c | memcpy_tofs(buf,offset+(*bhe)->b_data,chars); |
chars | 166 | fs/xiafs/file.c | buf += chars; |
chars | 168 | fs/xiafs/file.c | while (chars-->0) |
chars | 83 | include/linux/lp.h | #define LP_CHAR(minor) lp_table[(minor)].chars /* busy timeout */ |
chars | 95 | include/linux/lp.h | unsigned int chars; |