OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:rootp
(Results
1 - 8
of
8
) sorted by null
/bionic/libc/upstream-openbsd/lib/libc/stdlib/
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
...]
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 */
/external/valgrind/main/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/main/cachegrind/
cg_merge.c
1052
Bool avl_insert_wrk ( AvlNode**
rootp
,
1066
if (!(*
rootp
)) {
1067
(*
rootp
) = a;
1071
cmpres = kCmp( (*
rootp
)->key, a->key );
1075
if ((*
rootp
)->left) {
1076
AvlNode* left_subtree = (*
rootp
)->left;
1078
switch ((*
rootp
)->balance--) {
1084
if ((*
rootp
)->left->balance < 0) {
1085
avl_swr(
rootp
);
1086
(*
rootp
)->balance = 0
[
all
...]
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
search.h
129
by *
ROOTP
and insert a new element if not found. */
134
by *
ROOTP
. If no matching entry is available return NULL. */
138
/* Remove the element matching KEY from the tree pointed to by *
ROOTP
. */
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
search.h
129
by *
ROOTP
and insert a new element if not found. */
134
by *
ROOTP
. If no matching entry is available return NULL. */
138
/* Remove the element matching KEY from the tree pointed to by *
ROOTP
. */
/external/libpcap/
optimize.c
[
all
...]
/external/compiler-rt/lib/sanitizer_common/
sanitizer_common_interceptors.inc
[
all
...]
Completed in 655 milliseconds