Searched refs:nelp (Results 1 – 6 of 6) sorted by relevance
/titanic_41/usr/src/lib/libbc/libc/gen/common/ |
H A D | lsearch.c | 44 lsearch(key, base, nelp, width, compar) in lsearch() argument 47 unsigned *nelp; /* Pointer to current table size */ 51 register POINTER next = base + *nelp * width; /* End of table */ 56 ++*nelp; /* Not found, add to table */
|
H A D | lfind.c | 44 lfind(key, base, nelp, width, compar) in lfind() argument 47 unsigned *nelp; /* Pointer to current table size */ 51 register POINTER next = base + *nelp * width; /* End of table */
|
/titanic_41/usr/src/lib/libc/port/gen/ |
H A D | lsearch.c | 55 lsearch(const void *ky, void *bs, size_t *nelp, size_t width, in lsearch() argument 60 char *next = base + *nelp * width; /* End of table */ in lsearch() 66 ++*nelp; /* Not found, add to table */ in lsearch()
|
H A D | lfind.c | 56 lfind(const void *ky, const void *bs, size_t *nelp, in lfind() argument 61 char *next = base + *nelp * width; /* End of table */ in lfind()
|
/titanic_41/usr/src/tools/ctf/cvt/ |
H A D | merge.c | 822 elist_t *oel, **nelp; in conjure_enum() local 824 for (oel = old->t_emem, nelp = &new->t_emem; in conjure_enum() 825 oel; oel = oel->el_next, nelp = &((*nelp)->el_next)) { in conjure_enum() 826 *nelp = xmalloc(sizeof (elist_t)); in conjure_enum() 827 (*nelp)->el_name = xstrdup(oel->el_name); in conjure_enum() 828 (*nelp)->el_number = oel->el_number; in conjure_enum() 830 *nelp = NULL; in conjure_enum()
|
/titanic_41/usr/src/lib/libc/port/ |
H A D | llib-lc | 650 void * lfind(const void *ky, const void *bs, size_t *nelp, 657 void * lsearch(const void *ky, void *bs, size_t *nelp,
|