Home
last modified time | relevance | path

Searched refs:posix_tnode (Results 1 – 6 of 6) sorted by relevance

/freebsd/include/
H A Dsearch.h40 } 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 Dtwalk.c22 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 Dtsearch.c32 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 Dtfind.c28 posix_tnode *
29 tfind(const void *vkey, posix_tnode * const *rootp, in tfind()
H A Dtdelete.c67 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 Dtsearch_test.c38 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()