OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:rootp
(Results
1 - 4
of
4
) sorted by null
/bionic/libc/upstream-openbsd/lib/libc/stdlib/
tfind.c
28
node **
rootp
= (node **)vrootp;
local
30
if (
rootp
== (struct node_t **)0)
32
while (*
rootp
!= (struct node_t *)0) { /* T1: */
34
if ((r = (*compar)(key, (*
rootp
)->key)) == 0) /* T2: */
35
return (*
rootp
); /* key found */
36
rootp
= (r < 0) ?
37
&(*
rootp
)->llink : /* T3: follow left branch */
38
&(*
rootp
)->rlink; /* T4: follow right branch */
tsearch.c
30
node **
rootp
= (node **)vrootp;
local
32
if (
rootp
== (struct node_t **)0)
34
while (*
rootp
!= (struct node_t *)0) { /* Knuth's T1: */
37
if ((r = (*compar)(key, (*
rootp
)->key)) == 0) /* T2: */
38
return ((void *)*
rootp
); /* we found it! */
39
rootp
= (r < 0) ?
40
&(*
rootp
)->left : /* T3: follow left branch */
41
&(*
rootp
)->right; /* T4: follow right branch */
45
*
rootp
= q; /* link new node to old */
57
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 **)v
rootp
;
local
[
all
...]
/prebuilts/tools/common/m2/repository/net/java/dev/jna/platform/3.4.0/
platform-3.4.0.jar
Completed in 66 milliseconds