HomeSort by relevance Sort by last modified time
    Searched refs:rootp (Results 1 - 7 of 7) sorted by null

  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
tfind.c 27 node **rootp = (node **)vrootp; local
29 if (rootp == (struct node_t **)0)
31 while (*rootp != (struct node_t *)0) { /* T1: */
33 if ((r = (*compar)(key, (*rootp)->key)) == 0) /* T2: */
34 return (*rootp); /* key found */
35 rootp = (r < 0) ?
36 &(*rootp)->llink : /* T3: follow left branch */
37 &(*rootp)->rlink; /* T4: follow right branch */
tsearch.c 29 node **rootp = (node **)vrootp; local
31 if (rootp == (struct node_t **)0)
33 while (*rootp != (struct node_t *)0) { /* Knuth's T1: */
36 if ((r = (*compar)(key, (*rootp)->key)) == 0) /* T2: */
37 return ((void *)*rootp); /* we found it! */
38 rootp = (r < 0) ?
39 &(*rootp)->left : /* T3: follow left branch */
40 &(*rootp)->right; /* T4: follow right branch */
44 *rootp = q; /* link new node to old */
56 node **rootp = (node **)vrootp local
    [all...]
  /external/libmicrohttpd/src/microhttpd/
tsearch.c 29 node_t **rootp = (node_t **)vrootp; local
31 if (rootp == NULL)
34 while (*rootp != NULL) { /* Knuth's T1: */
37 if ((r = (*compar)(vkey, (*rootp)->key)) == 0) /* T2: */
38 return *rootp; /* we found it! */
40 rootp = (r < 0) ?
41 &(*rootp)->llink : /* T3: follow left branch */
42 &(*rootp)->rlink; /* T4: follow right branch */
47 *rootp = q; /* link new node to old */
62 node_t **rootp = (node_t **)vrootp local
90 node_t **rootp = (node_t **)vrootp; local
    [all...]
  /external/valgrind/coregrind/
m_wordfm.c 161 Bool avl_insert_wrk ( AvlNode** rootp,
175 if (!(*rootp)) {
176 (*rootp) = a;
180 cmpres = kCmp ? /*boxed*/ kCmp( (*rootp)->key, a->key )
181 : /*unboxed*/ cmp_unsigned_Words( (UWord)(*rootp)->key,
186 if ((*rootp)->child[0]) {
187 AvlNode* left_subtree = (*rootp)->child[0];
189 switch ((*rootp)->balance--) {
195 if ((*rootp)->child[0]->balance < 0) {
196 avl_swr( rootp );
    [all...]
  /external/valgrind/cachegrind/
cg_merge.c 1065 Bool avl_insert_wrk ( AvlNode** rootp,
1079 if (!(*rootp)) {
1080 (*rootp) = a;
1084 cmpres = kCmp( (*rootp)->key, a->key );
1088 if ((*rootp)->left) {
1089 AvlNode* left_subtree = (*rootp)->left;
1091 switch ((*rootp)->balance--) {
1097 if ((*rootp)->left->balance < 0) {
1098 avl_swr( rootp );
1099 (*rootp)->balance = 0
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
mmo.c     [all...]
  /prebuilts/tools/common/m2/repository/net/java/dev/jna/platform/3.4.0/
platform-3.4.0.jar 

Completed in 928 milliseconds