Searched refs:node (Results 1 - 11 of 11) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/stdlib/
H A Dtfind.c20 } node; typedef in typeref:struct:node_t
22 /* find a node, or return 0 */
28 node **rootp = (node **)vrootp;
40 return (node *)0;
H A Dtsearch.c21 } node; typedef in typeref:struct:node_t
28 node *q;
30 node **rootp = (node **)vrootp;
43 q = (node *) malloc(sizeof(node)); /* T5: key not found */
44 if (q != (struct node_t *)0) { /* make new node */
45 *rootp = q; /* link new node to old */
46 q->key = key; /* initialize new node */
52 /* delete node wit
[all...]
/bionic/libc/include/
H A Dsearch.h23 typedef struct node { struct
25 struct node* llink;
26 struct node* rlink;
/bionic/tools/versioner/current/
H A Dsearch.h23 typedef struct node { struct
25 struct node* llink;
26 struct node* rlink;
/bionic/tests/
H A Dsearch_test.cpp51 struct node { struct
52 explicit node(const char* s) : s(strdup(s)) {} function in struct:node
58 return strcmp(reinterpret_cast<const node*>(lhs)->s, reinterpret_cast<const node*>(rhs)->s);
64 const node* n = *reinterpret_cast<const node* const*>(p);
73 node* n = reinterpret_cast<node*>(p);
81 node n1("z");
82 node n
[all...]
/bionic/libc/kernel/uapi/linux/
H A Dscif_ioctl.h24 __u16 node; member in struct:scif_port_id
H A Dtipc.h26 __u32 node; member in struct:tipc_portid
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Dscif_ioctl.h24 __u16 node; member in struct:scif_port_id
H A Dtipc.h26 __u32 node; member in struct:tipc_portid
/bionic/libc/dns/resolv/
H A Dres_cache.c1159 /* allocate a new entry as a cache node */
1379 Entry* node = *pnode; local
1380 *pnode = node->hlink;
1381 entry_free(node);
1523 Entry* node = *pnode; local
1525 if (node == NULL)
1528 if (node->hash == key->hash && entry_equals(node, key))
1531 pnode = &node->hlink;
/bionic/libc/kernel/tools/
H A Dcpp.py394 Each node in the tree is of the form (op, arg) or (op, arg1, arg2) where
598 node = self.parsePrimary()
604 node = (op.id, node, rhs)
606 return node

Completed in 238 milliseconds