Searched refs:nelp (Results 1 – 2 of 2) sorted by relevance
/freebsd/lib/libc/stdlib/ |
H A D | lsearch.c | 19 void *lsearch(const void *key, void *base, size_t *nelp, size_t width, in lsearch() argument 23 return (lwork(key, base, nelp, width, compar, 1)); in lsearch() 26 void *lfind(const void *key, const void *base, size_t *nelp, size_t width, in lfind() argument 30 return (lwork(key, base, nelp, width, compar, 0)); in lfind() 34 lwork(const void *key, const void *base, size_t *nelp, size_t width, in lwork() argument 40 for (endp = (uint8_t *)(ep + width * *nelp); ep < endp; ep += width) { in lwork() 54 ++*nelp; in lwork()
|
/freebsd/cddl/contrib/opensolaris/tools/ctf/cvt/ |
H A D | merge.c | 815 elist_t *oel, **nelp; in conjure_enum() local 817 for (oel = old->t_emem, nelp = &new->t_emem; in conjure_enum() 818 oel; oel = oel->el_next, nelp = &((*nelp)->el_next)) { in conjure_enum() 819 *nelp = xmalloc(sizeof (elist_t)); in conjure_enum() 820 (*nelp)->el_name = xstrdup(oel->el_name); in conjure_enum() 821 (*nelp)->el_number = oel->el_number; in conjure_enum() 823 *nelp = NULL; in conjure_enum()
|