HomeSort by relevance Sort by last modified time
    Searched defs:rootp (Results 1 - 4 of 4) 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...]
  /prebuilts/tools/common/m2/repository/net/java/dev/jna/platform/3.4.0/
platform-3.4.0.jar 

Completed in 116 milliseconds