Home
last modified time | relevance | path

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

/src/crypto/krb5/src/lib/rpc/
H A Dxdr_rec.c104 caddr_t out_finger; /* next output position */ member
182 rstrm->out_finger = rstrm->out_boundry = rstrm->out_base; in xdrrec_create()
184 rstrm->out_finger += BYTES_PER_XDR_UNIT; in xdrrec_create()
227 int32_t *dest_lp = (void *)(rstrm->out_finger); in xdrrec_putlong()
229 if (rstrm->out_boundry - rstrm->out_finger < BYTES_PER_XDR_UNIT) { in xdrrec_putlong()
237 dest_lp = ((int32_t *)(void *)(rstrm->out_finger)); in xdrrec_putlong()
239 rstrm->out_finger += BYTES_PER_XDR_UNIT; in xdrrec_putlong()
277 (long)rstrm->out_finger); in xdrrec_putbytes()
279 memmove(rstrm->out_finger, addr, current); in xdrrec_putbytes()
280 rstrm->out_finger += current; in xdrrec_putbytes()
[all …]
/src/lib/libc/xdr/
H A Dxdr_rec.c113 char *out_finger; /* next output position */ member
205 rstrm->out_finger = rstrm->out_boundry = rstrm->out_base; in xdrrec_create()
207 rstrm->out_finger += sizeof(u_int32_t); in xdrrec_create()
255 int32_t *dest_lp = ((int32_t *)(void *)(rstrm->out_finger)); in xdrrec_putlong()
257 if ((rstrm->out_finger += sizeof(int32_t)) > rstrm->out_boundry) { in xdrrec_putlong()
262 rstrm->out_finger -= sizeof(int32_t); in xdrrec_putlong()
266 dest_lp = ((int32_t *)(void *)(rstrm->out_finger)); in xdrrec_putlong()
267 rstrm->out_finger += sizeof(int32_t); in xdrrec_putlong()
306 (u_long)rstrm->out_finger); in xdrrec_putbytes()
308 memmove(rstrm->out_finger, addr, current); in xdrrec_putbytes()
[all …]