Home
last modified time | relevance | path

Searched refs:x_addr_end (Results 1 – 2 of 2) sorted by relevance

/f-stack/freebsd/contrib/openzfs/module/os/linux/spl/
H A Dspl-xdr.c151 xdrs->x_addr_end = addr + size; in xdrmem_create()
153 if (xdrs->x_addr_end < xdrs->x_addr) { in xdrmem_create()
168 rec->xc_num_avail = xdrs->x_addr_end - xdrs->x_addr; in xdrmem_control()
182 if (xdrs->x_addr > xdrs->x_addr_end) in xdrmem_enc_bytes()
185 if (xdrs->x_addr_end - xdrs->x_addr < size) in xdrmem_enc_bytes()
211 if (xdrs->x_addr > xdrs->x_addr_end) in xdrmem_dec_bytes()
214 if (xdrs->x_addr_end - xdrs->x_addr < size) in xdrmem_dec_bytes()
235 if (xdrs->x_addr + sizeof (uint32_t) > xdrs->x_addr_end) in xdrmem_enc_uint32()
248 if (xdrs->x_addr + sizeof (uint32_t) > xdrs->x_addr_end) in xdrmem_dec_uint32()
/f-stack/freebsd/contrib/openzfs/include/os/linux/spl/rpc/
H A Dxdr.h41 caddr_t x_addr_end; /* End of the buffer */ member