Home
last modified time | relevance | path

Searched refs:node (Results 1 – 10 of 10) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/stdlib/
Dtsearch.c20 } node; typedef
27 node *q; in tsearch()
29 node **rootp = (node **)vrootp; in tsearch()
42 q = malloc(sizeof(node)); /* T5: key not found */ in tsearch()
56 node **rootp = (node **)vrootp; in tdelete()
58 node *p = (node *)1; in tdelete()
59 node *q; in tdelete()
60 node *r; in tdelete()
95 trecurse(node *root, void (*action)(const void *, VISIT, int), int level) in trecurse()
114 node *root = (node *)vroot; in twalk()
[all …]
Dtfind.c19 } node; typedef
27 node **rootp = (node **)vrootp; in tfind()
39 return (node *)0; in tfind()
/bionic/tests/
Dsearch_test.cpp51 struct node { struct
52 explicit node(const char* s) : s(strdup(s)) {} in node() function
58 return strcmp(reinterpret_cast<const node*>(lhs)->s, reinterpret_cast<const node*>(rhs)->s); in node_cmp() argument
64 const node* n = *reinterpret_cast<const node* const*>(p); in node_walk()
73 node* n = reinterpret_cast<node*>(p); in node_free()
81 node n1("z"); in TEST()
82 node n2("a"); in TEST()
83 node n3("m"); in TEST()
/bionic/libc/bionic/
Dtdestroy.cpp22 struct node* llink;
23 struct node* rlink;
Dbionic_elf_tls.cpp400 CallbackHolder* node = modules.thread_exit_callback_tail_node; in __notify_thread_exit_callbacks() local
401 while (node != nullptr) { in __notify_thread_exit_callbacks()
402 node->cb(); in __notify_thread_exit_callbacks()
403 node = node->prev; in __notify_thread_exit_callbacks()
/bionic/libc/kernel/uapi/linux/
Dqrtr.h49 __le32 node; member
53 __le32 node; member
Dscif_ioctl.h23 __u16 node; member
Dtipc.h25 __u32 node; member
/bionic/libc/dns/resolv/
Dres_cache.c1437 Entry* node = *pnode; in _cache_flush_locked() local
1438 *pnode = node->hlink; in _cache_flush_locked()
1439 entry_free(node); in _cache_flush_locked()
1581 Entry* node = *pnode; in _cache_lookup_p() local
1583 if (node == NULL) in _cache_lookup_p()
1586 if (node->hash == key->hash && entry_equals(node, key)) in _cache_lookup_p()
1589 pnode = &node->hlink; in _cache_lookup_p()
/bionic/libc/kernel/tools/
Dcpp.py572 node = self.parsePrimary()
578 node = (op.id, node, rhs)
580 return node