tag | line | file | source code |
chars | 24 | fs/block_dev.c | int chars; |
chars | 58 | fs/block_dev.c | chars = blocksize - offset; |
chars | 59 | fs/block_dev.c | if (chars > count) |
chars | 60 | fs/block_dev.c | chars=count; |
chars | 63 | fs/block_dev.c | if (chars == blocksize) |
chars | 74 | fs/block_dev.c | if (chars != blocksize && !bh->b_uptodate) { |
chars | 110 | fs/block_dev.c | filp->f_pos += chars; |
chars | 111 | fs/block_dev.c | written += chars; |
chars | 112 | fs/block_dev.c | count -= chars; |
chars | 113 | fs/block_dev.c | memcpy_fromfs(p,buf,chars); |
chars | 114 | fs/block_dev.c | p += chars; |
chars | 115 | fs/block_dev.c | buf += chars; |
chars | 137 | fs/block_dev.c | unsigned int chars; |
chars | 241 | fs/block_dev.c | chars = left; |
chars | 243 | fs/block_dev.c | chars = blocksize - offset; |
chars | 244 | fs/block_dev.c | filp->f_pos += chars; |
chars | 245 | fs/block_dev.c | left -= chars; |
chars | 246 | fs/block_dev.c | read += chars; |
chars | 248 | fs/block_dev.c | memcpy_tofs(buf,offset+(*bhe)->b_data,chars); |
chars | 250 | fs/block_dev.c | buf += chars; |
chars | 252 | 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 | 78 | fs/ext2/file.c | int read, left, chars; |
chars | 187 | fs/ext2/file.c | chars = left; |
chars | 189 | fs/ext2/file.c | chars = sb->s_blocksize - offset; |
chars | 190 | fs/ext2/file.c | filp->f_pos += chars; |
chars | 191 | fs/ext2/file.c | left -= chars; |
chars | 192 | fs/ext2/file.c | read += chars; |
chars | 195 | fs/ext2/file.c | chars); |
chars | 197 | fs/ext2/file.c | buf += chars; |
chars | 199 | fs/ext2/file.c | while (chars-- > 0) |
chars | 75 | fs/isofs/file.c | static inline void unixify_text_buffer(char * buffer, int chars, int mode) |
chars | 77 | fs/isofs/file.c | while(chars--){ |
chars | 116 | fs/isofs/file.c | int read,left,chars; |
chars | 204 | fs/isofs/file.c | chars = left; |
chars | 206 | fs/isofs/file.c | chars = ISOFS_BUFFER_SIZE(inode) - offset; |
chars | 207 | fs/isofs/file.c | filp->f_pos += chars; |
chars | 208 | fs/isofs/file.c | left -= chars; |
chars | 209 | fs/isofs/file.c | read += chars; |
chars | 214 | fs/isofs/file.c | chars, inode->u.isofs_i.i_file_format); |
chars | 215 | fs/isofs/file.c | memcpy_tofs(buf,offset+(*bhe)->b_data,chars); |
chars | 217 | fs/isofs/file.c | buf += chars; |
chars | 219 | fs/isofs/file.c | while (chars-->0) |
chars | 68 | fs/minix/file.c | int read,left,chars; |
chars | 155 | fs/minix/file.c | chars = left; |
chars | 157 | fs/minix/file.c | chars = BLOCK_SIZE - offset; |
chars | 158 | fs/minix/file.c | filp->f_pos += chars; |
chars | 159 | fs/minix/file.c | left -= chars; |
chars | 160 | fs/minix/file.c | read += chars; |
chars | 162 | fs/minix/file.c | memcpy_tofs(buf,offset+(*bhe)->b_data,chars); |
chars | 164 | fs/minix/file.c | buf += chars; |
chars | 166 | fs/minix/file.c | while (chars-->0) |
chars | 26 | fs/pipe.c | int chars = 0, size = 0, read = 0; |
chars | 48 | fs/pipe.c | chars = PIPE_MAX_RCHUNK(*inode); |
chars | 49 | fs/pipe.c | if (chars > count) |
chars | 50 | fs/pipe.c | chars = count; |
chars | 51 | fs/pipe.c | if (chars > size) |
chars | 52 | fs/pipe.c | chars = size; |
chars | 53 | fs/pipe.c | read += chars; |
chars | 55 | fs/pipe.c | PIPE_START(*inode) += chars; |
chars | 57 | fs/pipe.c | PIPE_LEN(*inode) -= chars; |
chars | 58 | fs/pipe.c | count -= chars; |
chars | 59 | fs/pipe.c | memcpy_tofs(buf, pipebuf, chars ); |
chars | 60 | fs/pipe.c | buf += chars; |
chars | 73 | fs/pipe.c | int chars = 0, free = 0, written = 0; |
chars | 99 | fs/pipe.c | chars = PIPE_MAX_WCHUNK(*inode); |
chars | 100 | fs/pipe.c | if (chars > count) |
chars | 101 | fs/pipe.c | chars = count; |
chars | 102 | fs/pipe.c | if (chars > free) |
chars | 103 | fs/pipe.c | chars = free; |
chars | 105 | fs/pipe.c | written += chars; |
chars | 106 | fs/pipe.c | PIPE_LEN(*inode) += chars; |
chars | 107 | fs/pipe.c | count -= chars; |
chars | 108 | fs/pipe.c | memcpy_fromfs(pipebuf, buf, chars ); |
chars | 109 | fs/pipe.c | buf += chars; |
chars | 112 | fs/sysv/file.c | int read,left,chars; |
chars | 208 | fs/sysv/file.c | chars = left; |
chars | 210 | fs/sysv/file.c | chars = sb->sv_block_size - offset; |
chars | 211 | fs/sysv/file.c | filp->f_pos += chars; |
chars | 212 | fs/sysv/file.c | left -= chars; |
chars | 213 | fs/sysv/file.c | read += chars; |
chars | 215 | fs/sysv/file.c | memcpy_tofs(buf,offset+bhe->bh_data,chars); |
chars | 217 | fs/sysv/file.c | buf += chars; |
chars | 219 | fs/sysv/file.c | while (chars-- > 0) |
chars | 72 | fs/xiafs/file.c | int read, left, chars; |
chars | 153 | fs/xiafs/file.c | chars = left; |
chars | 155 | fs/xiafs/file.c | chars = XIAFS_ZSIZE(inode->i_sb) - offset; |
chars | 156 | fs/xiafs/file.c | filp->f_pos += chars; |
chars | 157 | fs/xiafs/file.c | left -= chars; |
chars | 158 | fs/xiafs/file.c | read += chars; |
chars | 160 | fs/xiafs/file.c | memcpy_tofs(buf,offset+(*bhe)->b_data,chars); |
chars | 162 | fs/xiafs/file.c | buf += chars; |
chars | 164 | 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; |