Lines Matching refs:cplen
4815 u32 cplen; in nfsd4_vbuf_to_stream() local
4818 cplen = min_t(unsigned long, buflen, in nfsd4_vbuf_to_stream()
4820 p = xdr_reserve_space(xdr, cplen); in nfsd4_vbuf_to_stream()
4824 memcpy(p, buf, cplen); in nfsd4_vbuf_to_stream()
4825 buf += cplen; in nfsd4_vbuf_to_stream()
4826 buflen -= cplen; in nfsd4_vbuf_to_stream()
4829 cplen = min_t(u32, buflen, PAGE_SIZE); in nfsd4_vbuf_to_stream()
4830 p = xdr_reserve_space(xdr, cplen); in nfsd4_vbuf_to_stream()
4834 memcpy(p, buf, cplen); in nfsd4_vbuf_to_stream()
4836 if (cplen < PAGE_SIZE) { in nfsd4_vbuf_to_stream()
4842 xdr_encode_opaque_fixed(p, NULL, cplen); in nfsd4_vbuf_to_stream()