Searched refs:posix_tnode (Results 1 – 6 of 6) sorted by relevance
/freebsd/include/ |
H A D | search.h | 40 } posix_tnode; typedef 47 typedef void posix_tnode; typedef 66 void *tdelete(const void * __restrict, posix_tnode ** __restrict, 68 posix_tnode * 69 tfind(const void *, posix_tnode * const *, 71 posix_tnode * 72 tsearch(const void *, posix_tnode **, 74 void twalk(const posix_tnode *, void (*)(const posix_tnode *, VISIT, int));
|
/freebsd/lib/libc/stdlib/ |
H A D | twalk.c | 22 typedef void (*cmp_fn_t)(const posix_tnode *, VISIT, int); 26 trecurse(const posix_tnode *root, cmp_fn_t action, int level) in trecurse() 44 twalk(const posix_tnode *vroot, cmp_fn_t action) in twalk()
|
H A D | tsearch.c | 32 posix_tnode * 33 tsearch(const void *key, posix_tnode **rootp, in tsearch() 37 posix_tnode **leaf, *result, *n, *x, *y, *z; in tsearch() 163 posix_tnode *z = y->llink; in tsearch()
|
H A D | tfind.c | 28 posix_tnode * 29 tfind(const void *vkey, posix_tnode * const *rootp, in tfind()
|
H A D | tdelete.c | 67 tdelete(const void *restrict key, posix_tnode **restrict rootp, in tdelete() 71 posix_tnode **leaf, *old, **n, *x, *y, *z, *result; in tdelete() 84 result = (posix_tnode *)1; in tdelete()
|
/freebsd/lib/libc/tests/stdlib/ |
H A D | tsearch_test.c | 38 tnode_assert(const posix_tnode *n) in tnode_assert() 62 treewalk(const posix_tnode *node, VISIT v, int level) in treewalk() 91 posix_tnode *root = NULL; in ATF_TC_BODY()
|