Lines Matching defs:cplen
4823 u32 cplen;
4826 cplen = min_t(unsigned long, buflen,
4828 p = xdr_reserve_space(xdr, cplen);
4832 memcpy(p, buf, cplen);
4833 buf += cplen;
4834 buflen -= cplen;
4837 cplen = min_t(u32, buflen, PAGE_SIZE);
4838 p = xdr_reserve_space(xdr, cplen);
4842 memcpy(p, buf, cplen);
4844 if (cplen < PAGE_SIZE) {
4850 xdr_encode_opaque_fixed(p, NULL, cplen);