Home
last modified time | relevance | path

Searched refs:rptr (Results 1 – 5 of 5) sorted by relevance

/glibc-2.36/sunrpc/
Dtest-rpcent.c29 output_rpcent (const char *call, struct rpcent *rptr) in output_rpcent() argument
33 if (rptr == NULL) in output_rpcent()
38 call, rptr->r_name, rptr->r_number); in output_rpcent()
39 for (pptr = rptr->r_aliases; *pptr != NULL; pptr++) in output_rpcent()
47 struct rpcent *rptr; in test_rpc() local
49 rptr = getrpcbyname ("portmap"); in test_rpc()
50 output_rpcent ("getrpcyname (\"portmap\")", rptr); in test_rpc()
52 rptr = getrpcbynumber (100000); in test_rpc()
53 output_rpcent ("getrpcbynumber (100000)", rptr); in test_rpc()
58 rptr = getrpcent (); in test_rpc()
[all …]
/glibc-2.36/stdlib/
Drandom_r.c201 buf->rptr = &state[0]; in __srandom_r()
243 old_state[-1] = (MAX_TYPES * (buf->rptr - old_state)) + old_type; in weak_alias()
275 state[-1] = (buf->rptr - state) * MAX_TYPES + type; in weak_alias()
312 old_state[-1] = (MAX_TYPES * (buf->rptr - old_state)) + old_type; in weak_alias()
325 buf->rptr = &new_state[rear]; in weak_alias()
371 int32_t *rptr = buf->rptr; in weak_alias() local
375 val = *fptr += (uint32_t) *rptr; in weak_alias()
382 ++rptr; in weak_alias()
386 ++rptr; in weak_alias()
387 if (rptr >= end_ptr) in weak_alias()
[all …]
Drandom.c173 .rptr = &randtbl[1],
Dstdlib.h427 int32_t *rptr; /* Rear pointer. */ member
/glibc-2.36/ChangeLog.old/
DChangeLog.114196 new rptr and fptr. Test for arg_state being NULL.