tag | line | file | source code |
chars | 20 | fs/block_dev.c | int chars; |
chars | 35 | fs/block_dev.c | chars = BLOCK_SIZE - offset; |
chars | 36 | fs/block_dev.c | if (chars > count) |
chars | 37 | fs/block_dev.c | chars=count; |
chars | 38 | fs/block_dev.c | if (chars == BLOCK_SIZE) |
chars | 47 | fs/block_dev.c | filp->f_pos += chars; |
chars | 48 | fs/block_dev.c | written += chars; |
chars | 49 | fs/block_dev.c | count -= chars; |
chars | 50 | fs/block_dev.c | memcpy_fromfs(p,buf,chars); |
chars | 51 | fs/block_dev.c | p += chars; |
chars | 52 | fs/block_dev.c | buf += chars; |
chars | 71 | fs/block_dev.c | unsigned int chars; |
chars | 148 | fs/block_dev.c | chars = left; |
chars | 150 | fs/block_dev.c | chars = BLOCK_SIZE - offset; |
chars | 151 | fs/block_dev.c | filp->f_pos += chars; |
chars | 152 | fs/block_dev.c | left -= chars; |
chars | 153 | fs/block_dev.c | read += chars; |
chars | 155 | fs/block_dev.c | memcpy_tofs(buf,offset+(*bhe)->b_data,chars); |
chars | 157 | fs/block_dev.c | buf += chars; |
chars | 159 | fs/block_dev.c | while (chars-->0) |
chars | 74 | fs/ext/file.c | int read,left,chars; |
chars | 157 | fs/ext/file.c | chars = left; |
chars | 159 | fs/ext/file.c | chars = BLOCK_SIZE - offset; |
chars | 160 | fs/ext/file.c | filp->f_pos += chars; |
chars | 161 | fs/ext/file.c | left -= chars; |
chars | 162 | fs/ext/file.c | read += chars; |
chars | 164 | fs/ext/file.c | memcpy_tofs(buf,offset+(*bhe)->b_data,chars); |
chars | 166 | fs/ext/file.c | buf += chars; |
chars | 168 | fs/ext/file.c | while (chars-->0) |
chars | 75 | fs/ext2/file.c | int read, left, chars; |
chars | 161 | fs/ext2/file.c | chars = left; |
chars | 163 | fs/ext2/file.c | chars = sb->s_blocksize - offset; |
chars | 164 | fs/ext2/file.c | filp->f_pos += chars; |
chars | 165 | fs/ext2/file.c | left -= chars; |
chars | 166 | fs/ext2/file.c | read += chars; |
chars | 169 | fs/ext2/file.c | chars); |
chars | 171 | fs/ext2/file.c | buf += chars; |
chars | 173 | fs/ext2/file.c | while (chars-- > 0) |
chars | 74 | fs/isofs/file.c | static inline void unixify_text_buffer(char * buffer, int chars, int mode) |
chars | 76 | fs/isofs/file.c | while(chars--){ |
chars | 115 | fs/isofs/file.c | int read,left,chars; |
chars | 224 | fs/isofs/file.c | chars = left; |
chars | 226 | fs/isofs/file.c | chars = ISOFS_BUFFER_SIZE - offset; |
chars | 227 | fs/isofs/file.c | filp->f_pos += chars; |
chars | 228 | fs/isofs/file.c | left -= chars; |
chars | 229 | fs/isofs/file.c | read += chars; |
chars | 234 | fs/isofs/file.c | chars, inode->u.isofs_i.i_file_format); |
chars | 235 | fs/isofs/file.c | memcpy_tofs(buf,offset+(*bhe)->b_data,chars); |
chars | 237 | fs/isofs/file.c | buf += chars; |
chars | 239 | fs/isofs/file.c | while (chars-->0) |
chars | 68 | fs/minix/file.c | int read,left,chars; |
chars | 151 | fs/minix/file.c | chars = left; |
chars | 153 | fs/minix/file.c | chars = BLOCK_SIZE - offset; |
chars | 154 | fs/minix/file.c | filp->f_pos += chars; |
chars | 155 | fs/minix/file.c | left -= chars; |
chars | 156 | fs/minix/file.c | read += chars; |
chars | 158 | fs/minix/file.c | memcpy_tofs(buf,offset+(*bhe)->b_data,chars); |
chars | 160 | fs/minix/file.c | buf += chars; |
chars | 162 | fs/minix/file.c | while (chars-->0) |
chars | 18 | fs/pipe.c | int chars, size, read = 0; |
chars | 30 | fs/pipe.c | chars = PAGE_SIZE-PIPE_TAIL(*inode); |
chars | 31 | fs/pipe.c | if (chars > count) |
chars | 32 | fs/pipe.c | chars = count; |
chars | 33 | fs/pipe.c | if (chars > size) |
chars | 34 | fs/pipe.c | chars = size; |
chars | 35 | fs/pipe.c | memcpy_tofs(buf, PIPE_BASE(*inode)+PIPE_TAIL(*inode), chars ); |
chars | 36 | fs/pipe.c | read += chars; |
chars | 37 | fs/pipe.c | PIPE_TAIL(*inode) += chars; |
chars | 39 | fs/pipe.c | count -= chars; |
chars | 40 | fs/pipe.c | buf += chars; |
chars | 52 | fs/pipe.c | int chars, size, written = 0; |
chars | 77 | fs/pipe.c | chars = PAGE_SIZE-PIPE_HEAD(*inode); |
chars | 78 | fs/pipe.c | if (chars > count) |
chars | 79 | fs/pipe.c | chars = count; |
chars | 80 | fs/pipe.c | if (chars > size) |
chars | 81 | fs/pipe.c | chars = size; |
chars | 82 | fs/pipe.c | memcpy_fromfs(PIPE_BASE(*inode)+PIPE_HEAD(*inode), buf, chars ); |
chars | 83 | fs/pipe.c | written += chars; |
chars | 84 | fs/pipe.c | PIPE_HEAD(*inode) += chars; |
chars | 86 | fs/pipe.c | count -= chars; |
chars | 87 | fs/pipe.c | buf += chars; |
chars | 72 | fs/xiafs/file.c | int read, left, chars; |
chars | 149 | fs/xiafs/file.c | chars = left; |
chars | 151 | fs/xiafs/file.c | chars = XIAFS_ZSIZE(inode->i_sb) - offset; |
chars | 152 | fs/xiafs/file.c | filp->f_pos += chars; |
chars | 153 | fs/xiafs/file.c | left -= chars; |
chars | 154 | fs/xiafs/file.c | read += chars; |
chars | 156 | fs/xiafs/file.c | memcpy_tofs(buf,offset+(*bhe)->b_data,chars); |
chars | 158 | fs/xiafs/file.c | buf += chars; |
chars | 160 | fs/xiafs/file.c | while (chars-->0) |
chars | 74 | include/linux/lp.h | #define LP_CHAR(minor) lp_table[(minor)].chars /* busy timeout */ |
chars | 86 | include/linux/lp.h | unsigned int chars; |