Lines Matching refs:thislen
1517 unsigned int page_len, thislen, page_offset; in xdr_process_buf() local
1525 thislen = buf->head[0].iov_len - offset; in xdr_process_buf()
1526 if (thislen > len) in xdr_process_buf()
1527 thislen = len; in xdr_process_buf()
1528 sg_set_buf(sg, buf->head[0].iov_base + offset, thislen); in xdr_process_buf()
1533 len -= thislen; in xdr_process_buf()
1547 thislen = PAGE_SIZE - page_offset; in xdr_process_buf()
1549 if (thislen > page_len) in xdr_process_buf()
1550 thislen = page_len; in xdr_process_buf()
1551 sg_set_page(sg, buf->pages[i], thislen, page_offset); in xdr_process_buf()
1555 page_len -= thislen; in xdr_process_buf()
1558 thislen = PAGE_SIZE; in xdr_process_buf()
1565 thislen = buf->tail[0].iov_len - offset; in xdr_process_buf()
1566 if (thislen > len) in xdr_process_buf()
1567 thislen = len; in xdr_process_buf()
1568 sg_set_buf(sg, buf->tail[0].iov_base + offset, thislen); in xdr_process_buf()
1570 len -= thislen; in xdr_process_buf()