Lines Matching refs:tree
4662 static void build_thread_tree_helper(THREADNODE *cur, zval *tree, long *numNodes, char *buf) in build_thread_tree_helper() argument
4669 add_assoc_long(tree, buf, cur->num); in build_thread_tree_helper()
4674 add_assoc_long(tree, buf, *numNodes); in build_thread_tree_helper()
4675 build_thread_tree_helper(cur->next, tree, numNodes, buf); in build_thread_tree_helper()
4677 add_assoc_long(tree, buf, 0); in build_thread_tree_helper()
4683 add_assoc_long(tree, buf, *numNodes); in build_thread_tree_helper()
4684 build_thread_tree_helper(cur->branch, tree, numNodes, buf); in build_thread_tree_helper()
4686 add_assoc_long(tree, buf, 0); in build_thread_tree_helper()
4693 static int build_thread_tree(THREADNODE *top, zval **tree) in build_thread_tree() argument
4698 array_init(*tree); in build_thread_tree()
4700 build_thread_tree_helper(top, *tree, &numNodes, buf); in build_thread_tree()