Lines Matching defs:count
130 size_t count,
140 if (count > MAX_RW_COUNT)
142 if (inode->i_sb->s_maxbytes - pos < count)
145 trace_xfile_pread(xf, pos, count);
148 while (count > 0) {
152 len = min_t(ssize_t, count, PAGE_SIZE - offset_in_page(pos));
185 count -= len;
207 size_t count,
218 if (count > MAX_RW_COUNT)
220 if (inode->i_sb->s_maxbytes - pos < count)
223 trace_xfile_pwrite(xf, pos, count);
226 while (count > 0) {
232 len = min_t(ssize_t, count, PAGE_SIZE - offset_in_page(pos));
270 count -= ret;