Lines Matching refs:total_len
233 size_t total_len = iov_iter_count(to); in pipe_read() local
240 if (unlikely(total_len == 0)) in pipe_read()
265 if (total_len < 8) { in pipe_read()
280 total_len -= sizeof(n); in pipe_read()
291 if (chars > total_len) { in pipe_read()
297 chars = total_len; in pipe_read()
319 total_len = chars; in pipe_read()
334 total_len -= chars; in pipe_read()
335 if (!total_len) in pipe_read()
423 size_t total_len = iov_iter_count(from); in pipe_write() local
429 if (unlikely(total_len == 0)) in pipe_write()
457 chars = total_len & (PAGE_SIZE-1); in pipe_write()