Lines Matching refs:tree
4671 static void build_thread_tree_helper(THREADNODE *cur, zval *tree, long *numNodes, char *buf) in build_thread_tree_helper() argument
4678 add_assoc_long(tree, buf, cur->num); in build_thread_tree_helper()
4683 add_assoc_long(tree, buf, *numNodes); in build_thread_tree_helper()
4684 build_thread_tree_helper(cur->next, tree, numNodes, buf); in build_thread_tree_helper()
4686 add_assoc_long(tree, buf, 0); in build_thread_tree_helper()
4692 add_assoc_long(tree, buf, *numNodes); in build_thread_tree_helper()
4693 build_thread_tree_helper(cur->branch, tree, numNodes, buf); in build_thread_tree_helper()
4695 add_assoc_long(tree, buf, 0); in build_thread_tree_helper()
4702 static int build_thread_tree(THREADNODE *top, zval **tree) in build_thread_tree() argument
4707 array_init(*tree); in build_thread_tree()
4709 build_thread_tree_helper(top, *tree, &numNodes, buf); in build_thread_tree()