Searched refs:nptr (Results 1 - 5 of 5) sorted by relevance

/xnu-2422.115.4/libsyscall/wrappers/
H A D_libc_funcptr.c57 void *nptr = realloc(ptr, size); local
58 if (!nptr && ptr)
60 return (nptr);
/xnu-2422.115.4/iokit/Kernel/
H A DIOStringFuncs.c85 long strtol(const char *nptr, char **endptr, int base);
86 unsigned long strtoul(const char *nptr, char **endptr, int base);
87 quad_t strtoq(const char *nptr, char **endptr, int base);
88 u_quad_t strtouq(const char *nptr, char **endptr, int base);
127 strtol(const char *nptr, char **endptr, int base) argument
129 register const char *s = nptr;
212 *endptr = __CAST_AWAY_QUALIFIER(nptr, const, char *);
219 strtoul(const char *nptr, char **endptr, int base) argument
221 register const char *s = nptr;
283 *endptr = __CAST_AWAY_QUALIFIER(nptr, cons
297 strtoq(const char *nptr, char **endptr, int base) argument
398 strtouq(const char *nptr, char **endptr, register int base) argument
[all...]
/xnu-2422.115.4/bsd/netinet6/
H A Dip6_mroute.c907 struct mf6c **nptr; local
922 nptr = &mf6ctable[hash];
923 while ((rt = *nptr) != NULL) {
931 nptr = &rt->mf6c_next;
937 *nptr = rt->mf6c_next;
1235 struct mf6c *mfc, **nptr; local
1241 nptr = &mf6ctable[i];
1242 while ((mfc = *nptr) != NULL) {
1271 *nptr = mfc->mf6c_next;
1274 nptr
[all...]
/xnu-2422.115.4/bsd/netinet/
H A Dip_mroute.c996 struct mfc **nptr; local
1007 nptr = &mfctable[hash];
1008 while ((rt = *nptr) != NULL) {
1014 nptr = &rt->mfc_next;
1020 *nptr = rt->mfc_next;
1284 struct mfc *mfc, **nptr; local
1290 nptr = &mfctable[i];
1291 for (mfc = *nptr; mfc != NULL; mfc = *nptr) {
1318 *nptr
[all...]
/xnu-2422.115.4/bsd/nfs/
H A Dnfs_gss.c3461 u_char *ptr, *nptr; local
3507 nptr = mbuf_data(mbn);
3510 bcopy(nptr, tmp + remain, offset); // grab from next mbuf
3514 bcopy(tmp + remain, nptr, offset); // return to next mbuf

Completed in 61 milliseconds