Lines Matching defs:cplen
5035 u32 cplen;
5038 cplen = min_t(unsigned long, buflen,
5040 p = xdr_reserve_space(xdr, cplen);
5044 memcpy(p, buf, cplen);
5045 buf += cplen;
5046 buflen -= cplen;
5049 cplen = min_t(u32, buflen, PAGE_SIZE);
5050 p = xdr_reserve_space(xdr, cplen);
5054 memcpy(p, buf, cplen);
5056 if (cplen < PAGE_SIZE) {
5062 xdr_encode_opaque_fixed(p, NULL, cplen);