Home
last modified time | relevance | path

Searched refs:node (Results 1 – 11 of 11) 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.cpp53 struct node { struct
54 explicit node(const char* s) : s(strdup(s)) {} in node() function
60 return strcmp(reinterpret_cast<const node*>(lhs)->s, reinterpret_cast<const node*>(rhs)->s); in node_cmp() argument
66 const node* n = *reinterpret_cast<const node* const*>(p); in node_walk()
75 node* n = reinterpret_cast<node*>(p); in node_free()
83 node n1("z"); in TEST()
84 node n2("a"); in TEST()
85 node n3("m"); in TEST()
/bionic/libc/bionic/
Dtdestroy.cpp22 struct node* llink;
23 struct node* rlink;
Dbionic_elf_tls.cpp479 CallbackHolder* node = modules.thread_exit_callback_tail_node; in __notify_thread_exit_callbacks() local
480 while (node != nullptr) { in __notify_thread_exit_callbacks()
481 node->cb(); in __notify_thread_exit_callbacks()
482 node = node->prev; in __notify_thread_exit_callbacks()
/bionic/libc/kernel/uapi/linux/
Dqrtr.h37 __le32 node; member
41 __le32 node; member
Dscif_ioctl.h11 __u16 node; member
Dtipc.h13 __u32 node; member
/bionic/libc/dns/resolv/
Dres_cache.c1433 Entry* node = *pnode; in _cache_flush_locked() local
1434 *pnode = node->hlink; in _cache_flush_locked()
1435 entry_free(node); in _cache_flush_locked()
1577 Entry* node = *pnode; in _cache_lookup_p() local
1579 if (node == NULL) in _cache_lookup_p()
1582 if (node->hash == key->hash && entry_equals(node, key)) in _cache_lookup_p()
1585 pnode = &node->hlink; in _cache_lookup_p()
/bionic/libc/system_properties/
Dprop_area.cpp167 prop_trie_node* node = new (p) prop_trie_node(name, namelen); in new_prop_trie_node() local
169 return node; in new_prop_trie_node()
/bionic/libc/kernel/tools/
Dcpp.py577 node = self.parsePrimary()
583 node = (op.id, node, rhs)
585 return node