Symbol: posix_tnode
include/search.h
66
void *tdelete(const void * __restrict, posix_tnode ** __restrict,
include/search.h
68
posix_tnode *
include/search.h
69
tfind(const void *, posix_tnode * const *,
include/search.h
71
posix_tnode *
include/search.h
72
tsearch(const void *, posix_tnode **,
include/search.h
74
void twalk(const posix_tnode *, void (*)(const posix_tnode *, VISIT, int));
lib/libc/stdlib/tdelete.c
67
tdelete(const void *restrict key, posix_tnode **restrict rootp,
lib/libc/stdlib/tdelete.c
71
posix_tnode **leaf, *old, **n, *x, *y, *z, *result;
lib/libc/stdlib/tdelete.c
84
result = (posix_tnode *)1;
lib/libc/stdlib/tdestroy.c
22
posix_tnode *back, *curr, **front;
lib/libc/stdlib/tfind.c
28
posix_tnode *
lib/libc/stdlib/tfind.c
29
tfind(const void *vkey, posix_tnode * const *rootp,
lib/libc/stdlib/tsearch.c
163
posix_tnode *z = y->llink;
lib/libc/stdlib/tsearch.c
32
posix_tnode *
lib/libc/stdlib/tsearch.c
33
tsearch(const void *key, posix_tnode **rootp,
lib/libc/stdlib/tsearch.c
37
posix_tnode **leaf, *result, *n, *x, *y, *z;
lib/libc/stdlib/twalk.c
22
typedef void (*cmp_fn_t)(const posix_tnode *, VISIT, int);
lib/libc/stdlib/twalk.c
26
trecurse(const posix_tnode *root, cmp_fn_t action, int level)
lib/libc/stdlib/twalk.c
44
twalk(const posix_tnode *vroot, cmp_fn_t action)
lib/libc/tests/stdlib/tsearch_test.c
185
static posix_tnode *root = NULL;
lib/libc/tests/stdlib/tsearch_test.c
38
tnode_assert(const posix_tnode *n)
lib/libc/tests/stdlib/tsearch_test.c
62
treewalk(const posix_tnode *node, VISIT v, int level)
lib/libc/tests/stdlib/tsearch_test.c
91
posix_tnode *root = NULL;