Lines Matching refs:u_int
84 static bool_t xdrrec_getbytes (XDR *, char *, u_int);
85 static bool_t xdrrec_putbytes (XDR *, const char *, u_int);
86 static u_int xdrrec_getpos (XDR *);
87 static bool_t xdrrec_setpos (XDR *, u_int);
88 static int32_t * xdrrec_inline (XDR *, u_int);
145 u_int sendsize; /* must be <= INT_MAX */
146 u_int recvsize; /* must be <= INT_MAX */
158 static u_int fix_buf_size (u_int);
180 u_int sendsize, in xdrrec_create()
181 u_int recvsize, in xdrrec_create()
192 assert (sendsize < (u_int)INT_MAX); in xdrrec_create()
193 assert (recvsize < (u_int)INT_MAX); in xdrrec_create()
322 u_int len) in xdrrec_getbytes()
351 u_int len) in xdrrec_putbytes()
375 static u_int
398 return ((u_int) pos); in xdrrec_getpos()
403 u_int pos) in xdrrec_setpos()
406 u_int currpos = xdrrec_getpos (xdrs); in xdrrec_setpos()
443 u_int len) in xdrrec_inline()
454 assert (len < (u_int)LONG_MAX); in xdrrec_inline()
876 static u_int
877 fix_buf_size (u_int s) in fix_buf_size()