Searched refs:child (Results 1 – 4 of 4) sorted by relevance
/trusty/user/base/lib/libc-trusty/ |
D | pthreads.c | 97 void (*child)(void)) { in pthread_atfork()
|
/trusty/user/app/storage/ |
D | block_tree.h | 76 struct block_mac child; member 89 {0, 0, BLOCK_MAC_INITIAL_VALUE(block_tree.inserting.child), \
|
D | block_tree.c | 563 const struct block_mac* child = NULL; in block_tree_node_get_child() local 569 child = block_tree_node_get_child_data(tree, node_ro, index); in block_tree_node_get_child() 570 if (!block_mac_to_block(tr, child)) { in block_tree_node_get_child() 571 child = NULL; in block_tree_node_get_child() 575 if (!child && node_block == tree->inserting.block) { in block_tree_node_get_child() 579 child = &tree->inserting.child; in block_tree_node_get_child() 583 return child; in block_tree_node_get_child() 627 #define block_tree_node_for_each_child(tr, tree, block, node_ro, child, i) \ argument 629 (child = block_tree_node_get_child(tr, tree, block, node_ro, i)); \ 645 const struct block_mac* child; in block_tree_node_print_internal() local [all …]
|
/trusty/user/base/lib/dlmalloc/ |
D | dlmalloc.c | 2415 struct malloc_tree_chunk* child[2]; member 2425 #define leftmost_child(t) ((t)->child[0] != 0? (t)->child[0] : (t)->child[1]) 3334 assert(u->child[0] == 0); in do_check_tree() 3335 assert(u->child[1] == 0); in do_check_tree() 3341 assert (u->parent->child[0] == u || in do_check_tree() 3342 u->parent->child[1] == u || in do_check_tree() 3344 if (u->child[0] != 0) { in do_check_tree() 3345 assert(u->child[0]->parent == u); in do_check_tree() 3346 assert(u->child[0] != u); in do_check_tree() 3347 do_check_tree(m, u->child[0]); in do_check_tree() [all …]
|