Searched refs:leftmost_child (Results 1 – 5 of 5) sorted by relevance
/external/jemalloc/test/unit/ |
D | ph.c | 45 node_t *leftmost_child, *sibling; in node_print() local 51 leftmost_child = phn_lchild_get(node_t, link, node); in node_print() 52 if (leftmost_child == NULL) in node_print() 54 node_print(leftmost_child, depth + 1); in node_print() 56 for (sibling = phn_next_get(node_t, link, leftmost_child); sibling != in node_print() 89 node_t *leftmost_child, *sibling; in node_validate() local 96 leftmost_child = phn_lchild_get(node_t, link, node); in node_validate() 97 if (leftmost_child == NULL) in node_validate() 99 assert_ptr_eq((void *)phn_prev_get(node_t, link, leftmost_child), in node_validate() 101 nnodes += node_validate(leftmost_child, node); in node_validate() [all …]
|
/external/jemalloc_new/test/unit/ |
D | ph.c | 45 node_t *leftmost_child, *sibling; in node_print() local 52 leftmost_child = phn_lchild_get(node_t, link, node); in node_print() 53 if (leftmost_child == NULL) { in node_print() 56 node_print(leftmost_child, depth + 1); in node_print() 58 for (sibling = phn_next_get(node_t, link, leftmost_child); sibling != in node_print() 90 node_t *leftmost_child, *sibling; in node_validate() local 97 leftmost_child = phn_lchild_get(node_t, link, node); in node_validate() 98 if (leftmost_child == NULL) { in node_validate() 101 assert_ptr_eq((void *)phn_prev_get(node_t, link, leftmost_child), in node_validate() 103 nnodes += node_validate(leftmost_child, node); in node_validate() [all …]
|
/external/python/cpython2/Modules/_ctypes/libffi/src/ |
D | dlmalloc.c | 1881 #define leftmost_child(t) ((t)->child[0] != 0? (t)->child[0] : (t)->child[1]) macro 3773 t = leftmost_child(t); in tmalloc_large() 3809 while ((t = leftmost_child(t)) != 0) { in tmalloc_small()
|
/external/libffi/src/ |
D | dlmalloc.c | 1876 #define leftmost_child(t) ((t)->child[0] != 0? (t)->child[0] : (t)->child[1]) macro 3768 t = leftmost_child(t); in tmalloc_large() 3804 while ((t = leftmost_child(t)) != 0) { in tmalloc_small()
|
/external/dlmalloc/ |
D | malloc.c | 2410 #define leftmost_child(t) ((t)->child[0] != 0? (t)->child[0] : (t)->child[1]) macro 4503 t = leftmost_child(t); in tmalloc_large() 4538 while ((t = leftmost_child(t)) != 0) { in tmalloc_small()
|