Lines Matching refs:sizep
10 bool_t xdr_bytes (XDR *xdr, char **cpp, u_int *sizep, u_int maxsize) in xdr_bytes() argument
14 if(!XDR_RECV_UINT(xdr, sizep) || *sizep > maxsize) in xdr_bytes()
16 if(*sizep == 0) in xdr_bytes()
19 *cpp = (char *) mem_alloc(*sizep); in xdr_bytes()
21 return XDR_RECV_BYTES(xdr, (uint8 *) *cpp, *sizep); in xdr_bytes()
23 return (XDR_SEND_UINT(xdr, sizep) && in xdr_bytes()
24 *sizep <= maxsize && in xdr_bytes()
25 XDR_SEND_BYTES(xdr, (uint8 *) *cpp, *sizep)); in xdr_bytes()
339 u_int *sizep, /* number of elements */ in xdr_array() argument
351 if (!xdr_u_int (xdrs, sizep)) in xdr_array()
353 c = *sizep; in xdr_array()