Lines Matching refs:thislen
1459 unsigned int page_len, thislen, page_offset; in xdr_process_buf() local
1467 thislen = buf->head[0].iov_len - offset; in xdr_process_buf()
1468 if (thislen > len) in xdr_process_buf()
1469 thislen = len; in xdr_process_buf()
1470 sg_set_buf(sg, buf->head[0].iov_base + offset, thislen); in xdr_process_buf()
1475 len -= thislen; in xdr_process_buf()
1489 thislen = PAGE_SIZE - page_offset; in xdr_process_buf()
1491 if (thislen > page_len) in xdr_process_buf()
1492 thislen = page_len; in xdr_process_buf()
1493 sg_set_page(sg, buf->pages[i], thislen, page_offset); in xdr_process_buf()
1497 page_len -= thislen; in xdr_process_buf()
1500 thislen = PAGE_SIZE; in xdr_process_buf()
1507 thislen = buf->tail[0].iov_len - offset; in xdr_process_buf()
1508 if (thislen > len) in xdr_process_buf()
1509 thislen = len; in xdr_process_buf()
1510 sg_set_buf(sg, buf->tail[0].iov_base + offset, thislen); in xdr_process_buf()
1512 len -= thislen; in xdr_process_buf()