Lines Matching refs:tree
4686 static void build_thread_tree_helper(THREADNODE *cur, zval *tree, long *numNodes, char *buf) in build_thread_tree_helper() argument
4693 add_assoc_long(tree, buf, cur->num); in build_thread_tree_helper()
4698 add_assoc_long(tree, buf, *numNodes); in build_thread_tree_helper()
4699 build_thread_tree_helper(cur->next, tree, numNodes, buf); in build_thread_tree_helper()
4701 add_assoc_long(tree, buf, 0); in build_thread_tree_helper()
4707 add_assoc_long(tree, buf, *numNodes); in build_thread_tree_helper()
4708 build_thread_tree_helper(cur->branch, tree, numNodes, buf); in build_thread_tree_helper()
4710 add_assoc_long(tree, buf, 0); in build_thread_tree_helper()
4717 static int build_thread_tree(THREADNODE *top, zval **tree) in build_thread_tree() argument
4722 array_init(*tree); in build_thread_tree()
4724 build_thread_tree_helper(top, *tree, &numNodes, buf); in build_thread_tree()