Searched refs:vkey (Results 1 - 3 of 3) sorted by relevance

/bionic/libc/upstream-netbsd/libc/stdlib/
H A Dtfind.c24 /* find a node by key "vkey" in tree "vrootp", or return 0 */
26 tfind(const void *vkey, void * const *vrootp, argument
31 _DIAGASSERT(vkey != NULL);
40 if ((r = (*compar)(vkey, (*rootp)->key)) == 0) /* T2: */
H A Dtsearch.c26 tsearch(const void *vkey, void **vrootp, argument
32 _DIAGASSERT(vkey != NULL);
41 if ((r = (*compar)(vkey, (*rootp)->key)) == 0) /* T2: */
52 q->key = __UNCONST(vkey); /* initialize new node */
H A Dtdelete.c25 /* find a node with key "vkey" in tree "vrootp" */
27 tdelete(const void *vkey, void **vrootp, argument
34 _DIAGASSERT(vkey != NULL);
40 while ((cmp = (*compar)(vkey, (*rootp)->key)) != 0) {

Completed in 589 milliseconds