| tag | line | file | source code |
| chars | 19 | fs/block_dev.c | int chars; |
| chars | 34 | fs/block_dev.c | chars = BLOCK_SIZE - offset; |
| chars | 35 | fs/block_dev.c | if (chars > count) |
| chars | 36 | fs/block_dev.c | chars=count; |
| chars | 37 | fs/block_dev.c | if (chars == BLOCK_SIZE) |
| chars | 46 | fs/block_dev.c | filp->f_pos += chars; |
| chars | 47 | fs/block_dev.c | written += chars; |
| chars | 48 | fs/block_dev.c | count -= chars; |
| chars | 49 | fs/block_dev.c | memcpy_fromfs(p,buf,chars); |
| chars | 50 | fs/block_dev.c | p += chars; |
| chars | 51 | fs/block_dev.c | buf += chars; |
| chars | 63 | fs/block_dev.c | unsigned int chars; |
| chars | 78 | fs/block_dev.c | chars = BLOCK_SIZE-offset; |
| chars | 79 | fs/block_dev.c | if (chars > count) |
| chars | 80 | fs/block_dev.c | chars = count; |
| chars | 86 | fs/block_dev.c | filp->f_pos += chars; |
| chars | 87 | fs/block_dev.c | read += chars; |
| chars | 88 | fs/block_dev.c | count -= chars; |
| chars | 89 | fs/block_dev.c | memcpy_tofs(buf,p,chars); |
| chars | 90 | fs/block_dev.c | p += chars; |
| chars | 91 | fs/block_dev.c | buf += chars; |
| chars | 78 | fs/ext/file.c | int read,left,chars,nr; |
| chars | 133 | fs/ext/file.c | chars = left; |
| chars | 135 | fs/ext/file.c | chars = BLOCK_SIZE - offset; |
| chars | 136 | fs/ext/file.c | filp->f_pos += chars; |
| chars | 137 | fs/ext/file.c | left -= chars; |
| chars | 138 | fs/ext/file.c | read += chars; |
| chars | 140 | fs/ext/file.c | memcpy_tofs(buf,offset+(*bhe)->b_data,chars); |
| chars | 142 | fs/ext/file.c | buf += chars; |
| chars | 144 | fs/ext/file.c | while (chars-->0) |
| chars | 78 | fs/minix/file.c | int read,left,chars,nr; |
| chars | 133 | fs/minix/file.c | chars = left; |
| chars | 135 | fs/minix/file.c | chars = BLOCK_SIZE - offset; |
| chars | 136 | fs/minix/file.c | filp->f_pos += chars; |
| chars | 137 | fs/minix/file.c | left -= chars; |
| chars | 138 | fs/minix/file.c | read += chars; |
| chars | 140 | fs/minix/file.c | memcpy_tofs(buf,offset+(*bhe)->b_data,chars); |
| chars | 142 | fs/minix/file.c | buf += chars; |
| chars | 144 | 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, (char *)inode->i_size+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 | 48 | fs/pipe.c | int chars, size, written = 0; |
| chars | 73 | fs/pipe.c | chars = PAGE_SIZE-PIPE_HEAD(*inode); |
| chars | 74 | fs/pipe.c | if (chars > count) |
| chars | 75 | fs/pipe.c | chars = count; |
| chars | 76 | fs/pipe.c | if (chars > size) |
| chars | 77 | fs/pipe.c | chars = size; |
| chars | 78 | fs/pipe.c | memcpy_fromfs((char *)inode->i_size+PIPE_HEAD(*inode), buf, chars ); |
| chars | 79 | fs/pipe.c | written += chars; |
| chars | 80 | fs/pipe.c | PIPE_HEAD(*inode) += chars; |
| chars | 82 | fs/pipe.c | count -= chars; |
| chars | 83 | fs/pipe.c | buf += chars; |