/bionic/libc/upstream-openbsd/lib/libc/stdlib/ |
tfind.c | 7 * The node_t structure is for internal use only 16 typedef struct node_t struct 19 struct node_t *llink, *rlink; 30 if (rootp == (struct node_t **)0) 31 return ((struct node_t *)0); 32 while (*rootp != (struct node_t *)0) { /* T1: */
|
tsearch.c | 7 * The node_t structure is for internal use only 18 typedef struct node_t { struct 20 struct node_t *left, *right; 32 if (rootp == (struct node_t **)0) 34 while (*rootp != (struct node_t *)0) { /* Knuth's T1: */ 44 if (q != (struct node_t *)0) { /* make new node */ 47 q->left = q->right = (struct node_t *)0; 64 if (rootp == (struct node_t **)0 || *rootp == (struct node_t *)0) 65 return ((struct node_t *)0) [all...] |
/bionic/libc/include/ |
search.h | 27 } node_t; typedef in typeref:struct:node
|
/development/ndk/platforms/android-21/include/ |
search.h | 27 } node_t; typedef in typeref:struct:node
|
/external/libmicrohttpd/src/microhttpd/ |
tsearch.h | 37 } node_t; typedef in typeref:struct:node
|
/prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/ |
search.h | 27 } node_t; typedef in typeref:struct:node
|
/prebuilts/ndk/current/platforms/android-21/arch-arm64/usr/include/ |
search.h | 27 } node_t; typedef in typeref:struct:node
|
/prebuilts/ndk/current/platforms/android-21/arch-mips/usr/include/ |
search.h | 27 } node_t; typedef in typeref:struct:node
|
/prebuilts/ndk/current/platforms/android-21/arch-mips64/usr/include/ |
search.h | 27 } node_t; typedef in typeref:struct:node
|
/prebuilts/ndk/current/platforms/android-21/arch-x86/usr/include/ |
search.h | 27 } node_t; typedef in typeref:struct:node
|
/prebuilts/ndk/current/platforms/android-21/arch-x86_64/usr/include/ |
search.h | 27 } node_t; typedef in typeref:struct:node
|
/prebuilts/ndk/current/platforms/android-23/arch-arm/usr/include/ |
search.h | 27 } node_t; typedef in typeref:struct:node
|
/prebuilts/ndk/current/platforms/android-23/arch-arm64/usr/include/ |
search.h | 27 } node_t; typedef in typeref:struct:node
|
/prebuilts/ndk/current/platforms/android-23/arch-mips/usr/include/ |
search.h | 27 } node_t; typedef in typeref:struct:node
|
/prebuilts/ndk/current/platforms/android-23/arch-mips64/usr/include/ |
search.h | 27 } node_t; typedef in typeref:struct:node
|
/prebuilts/ndk/current/platforms/android-23/arch-x86/usr/include/ |
search.h | 27 } node_t; typedef in typeref:struct:node
|
/prebuilts/ndk/current/platforms/android-23/arch-x86_64/usr/include/ |
search.h | 27 } node_t; typedef in typeref:struct:node
|
/prebuilts/ndk/current/platforms/android-24/arch-arm/usr/include/ |
search.h | 27 } node_t; typedef in typeref:struct:node
|
/prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/ |
search.h | 27 } node_t; typedef in typeref:struct:node
|
/prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/ |
search.h | 27 } node_t; typedef in typeref:struct:node
|
/prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/ |
search.h | 27 } node_t; typedef in typeref:struct:node
|
/prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/ |
search.h | 27 } node_t; typedef in typeref:struct:node
|
/prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/ |
search.h | 27 } node_t; typedef in typeref:struct:node
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
search.h | 57 } node_t; typedef in typeref:struct:node
|
/external/jemalloc/test/unit/ |
rb.c | 14 typedef struct node_s node_t; typedef in typeref:struct:node_s 19 rb_node(node_t) link; 24 node_cmp(const node_t *a, const node_t *b) { 42 typedef rb_tree(node_t) tree_t; 43 rb_gen(static, tree_, tree_t, node_t, link, node_cmp); 48 node_t key; 71 tree_recurse(node_t *node, unsigned black_height, unsigned black_depth) 74 node_t *left_node; 75 node_t *right_node [all...] |