Home
last modified time | relevance | path

Searched refs:numptr (Results 1 – 3 of 3) sorted by relevance

/freebsd/lib/libc/net/
H A Dgetnetnamadr.c295 int numptr, len; in __copy_netent() local
298 numptr = 1; /* NULL ptr */ in __copy_netent()
300 for (i = 0; ne->n_aliases[i]; i++, numptr++) { in __copy_netent()
304 len += numptr * sizeof(char*); in __copy_netent()
315 cp = (char *)ALIGN(buf) + numptr * sizeof(char *); in __copy_netent()
H A Dgetprotoent.c296 int numptr, len; in __copy_protoent() local
299 numptr = 1; /* NULL ptr */ in __copy_protoent()
301 for (i = 0; pe->p_aliases[i]; i++, numptr++) { in __copy_protoent()
305 len += numptr * sizeof(char*); in __copy_protoent()
315 cp = (char *)ALIGN(buf) + numptr * sizeof(char *); in __copy_protoent()
/freebsd/usr.sbin/cron/lib/
H A Dentry.c668 get_number(int *numptr, int low, const char *names[], int ch, FILE *file) in get_number() argument
700 *numptr = i+low; in get_number()
711 *numptr = atoi(temp); in get_number()