Searched refs:ip (Results 1 – 6 of 6) sorted by relevance
/sunrpc/ |
A D | xdr_intXX_t.c | 28 xdr_int64_t (XDR *xdrs, int64_t *ip) in xdr_int64_t() argument 35 t1 = (int32_t) ((*ip) >> 32); in xdr_int64_t() 36 t2 = (int32_t) (*ip); in xdr_int64_t() 41 *ip = ((int64_t) t1) << 32; in xdr_int64_t() 53 xdr_quad_t (XDR *xdrs, quad_t *ip) in libc_hidden_nolink_sunrpc() 137 xdr_int16_t (XDR *xdrs, int16_t *ip) in libc_hidden_def() 144 t = (int32_t) *ip; in libc_hidden_def() 149 *ip = (int16_t) t; in libc_hidden_def() 185 xdr_int8_t (XDR *xdrs, int8_t *ip) in libc_hidden_nolink_sunrpc() 192 t = (int32_t) *ip; in libc_hidden_nolink_sunrpc() [all …]
|
A D | xdr_stdio.c | 173 xdrstdio_getint32 (XDR *xdrs, int32_t *ip) in xdrstdio_getint32() argument 179 *ip = ntohl (mycopy); in xdrstdio_getint32() 184 xdrstdio_putint32 (XDR *xdrs, const int32_t *ip) in xdrstdio_putint32() argument 186 int32_t mycopy = htonl (*ip); in xdrstdio_putint32() 188 ip = &mycopy; in xdrstdio_putint32() 189 if (fwrite ((caddr_t) ip, 4, 1, (FILE *) xdrs->x_private) != 1) in xdrstdio_putint32()
|
A D | xdr_float.c | 243 int *ip = (int *)dp; in xdr_double() local 245 tmp[0] = ip[!LSW]; in xdr_double() 246 tmp[1] = ip[LSW]; in xdr_double() 283 int *ip = (int *)dp; in xdr_double() local 287 ip[0] = tmp[0]; in xdr_double() 288 ip[1] = tmp[1]; in xdr_double()
|
A D | xdr_mem.c | 215 xdrmem_getint32 (XDR *xdrs, int32_t *ip) in xdrmem_getint32() argument 220 *ip = ntohl ((*((int32_t *) (xdrs->x_private)))); in xdrmem_getint32() 231 xdrmem_putint32 (XDR *xdrs, const int32_t *ip) in xdrmem_putint32() argument 236 *(int32_t *) xdrs->x_private = htonl (*ip); in xdrmem_putint32()
|
A D | xdr.c | 98 xdr_int (XDR *xdrs, int *ip) in libc_hidden_def() 107 l = (long) *ip; in libc_hidden_def() 115 *ip = (int) l; in libc_hidden_def() 122 return xdr_long (xdrs, (long *) ip); in libc_hidden_def() 124 return xdr_short (xdrs, (short *) ip); in libc_hidden_def()
|
A D | xdr_rec.c | 411 xdrrec_getint32 (XDR *xdrs, int32_t *ip) in xdrrec_getint32() argument 421 *ip = ntohl (*bufip); in xdrrec_getint32() 430 *ip = ntohl (mylong); in xdrrec_getint32() 436 xdrrec_putint32 (XDR *xdrs, const int32_t *ip) in xdrrec_putint32() argument 454 *dest_ip = htonl (*ip); in xdrrec_putint32()
|
Completed in 13 milliseconds