Lines Matching refs:total_len
217 size_t total_len = iov_iter_count(to); in pipe_read() local
224 if (unlikely(total_len == 0)) in pipe_read()
248 if (total_len < 8) { in pipe_read()
263 total_len -= sizeof(n); in pipe_read()
274 if (chars > total_len) { in pipe_read()
280 chars = total_len; in pipe_read()
302 total_len = chars; in pipe_read()
317 total_len -= chars; in pipe_read()
318 if (!total_len) in pipe_read()
407 size_t total_len = iov_iter_count(from); in pipe_write() local
413 if (unlikely(total_len == 0)) in pipe_write()
444 chars = total_len & (PAGE_SIZE-1); in pipe_write()