tree 83 ext/dom/documentfragment.c static void php_dom_xmlSetTreeDoc(xmlNodePtr tree, xmlDocPtr doc) /* {{{ */ tree 88 ext/dom/documentfragment.c if (tree) { tree 89 ext/dom/documentfragment.c if(tree->type == XML_ELEMENT_NODE) { tree 90 ext/dom/documentfragment.c prop = tree->properties; tree 103 ext/dom/documentfragment.c if (tree->children != NULL) { tree 104 ext/dom/documentfragment.c cur = tree->children; tree 110 ext/dom/documentfragment.c tree->doc = doc; tree 693 ext/dom/element.c static xmlNsPtr _dom_new_reconNs(xmlDocPtr doc, xmlNodePtr tree, xmlNsPtr ns) /* {{{ */ tree 699 ext/dom/element.c if ((tree == NULL) || (ns == NULL) || (ns->type != XML_NAMESPACE_DECL)) { tree 713 ext/dom/element.c def = xmlSearchNs(doc, tree, prefix); tree 721 ext/dom/element.c def = xmlSearchNs(doc, tree, prefix); tree 727 ext/dom/element.c def = xmlNewNs(tree, ns->href, prefix); tree 4684 ext/imap/php_imap.c static void build_thread_tree_helper(THREADNODE *cur, zval *tree, long *numNodes, char *buf) tree 4691 ext/imap/php_imap.c add_assoc_long(tree, buf, cur->num); tree 4696 ext/imap/php_imap.c add_assoc_long(tree, buf, *numNodes); tree 4697 ext/imap/php_imap.c build_thread_tree_helper(cur->next, tree, numNodes, buf); tree 4699 ext/imap/php_imap.c add_assoc_long(tree, buf, 0); tree 4705 ext/imap/php_imap.c add_assoc_long(tree, buf, *numNodes); tree 4706 ext/imap/php_imap.c build_thread_tree_helper(cur->branch, tree, numNodes, buf); tree 4708 ext/imap/php_imap.c add_assoc_long(tree, buf, 0); tree 4715 ext/imap/php_imap.c static int build_thread_tree(THREADNODE *top, zval **tree) tree 4720 ext/imap/php_imap.c array_init(*tree); tree 4722 ext/imap/php_imap.c build_thread_tree_helper(top, *tree, &numNodes, buf); tree 154240 ext/sqlite3/libsqlite/sqlite3.c Rtree tree; tree 154245 ext/sqlite3/libsqlite/sqlite3.c memset(&tree, 0, sizeof(Rtree)); tree 154246 ext/sqlite3/libsqlite/sqlite3.c tree.nDim = sqlite3_value_int(apArg[0]); tree 154247 ext/sqlite3/libsqlite/sqlite3.c tree.nBytesPerCell = 8 + 8 * tree.nDim; tree 154256 ext/sqlite3/libsqlite/sqlite3.c nodeGetCell(&tree, &node, ii, &cell); tree 154259 ext/sqlite3/libsqlite/sqlite3.c for(jj=0; jj<tree.nDim*2; jj++){ tree 33 sapi/phpdbg/phpdbg_btree.c void phpdbg_btree_init(phpdbg_btree *tree, zend_ulong depth) { tree 34 sapi/phpdbg/phpdbg_btree.c tree->depth = depth; tree 35 sapi/phpdbg/phpdbg_btree.c tree->branch = NULL; tree 36 sapi/phpdbg/phpdbg_btree.c tree->count = 0; tree 39 sapi/phpdbg/phpdbg_btree.c phpdbg_btree_result *phpdbg_btree_find(phpdbg_btree *tree, zend_ulong idx) { tree 40 sapi/phpdbg/phpdbg_btree.c phpdbg_btree_branch *branch = tree->branch; tree 41 sapi/phpdbg/phpdbg_btree.c int i = tree->depth - 1; tree 66 sapi/phpdbg/phpdbg_btree.c phpdbg_btree_result *phpdbg_btree_find_closest(phpdbg_btree *tree, zend_ulong idx) { tree 67 sapi/phpdbg/phpdbg_btree.c phpdbg_btree_branch *branch = tree->branch; tree 68 sapi/phpdbg/phpdbg_btree.c int i = tree->depth - 1, last_superior_i = -1; tree 87 sapi/phpdbg/phpdbg_btree.c branch = tree->branch; tree 88 sapi/phpdbg/phpdbg_btree.c i = tree->depth - 1; tree 121 sapi/phpdbg/phpdbg_btree.c phpdbg_btree_position phpdbg_btree_find_between(phpdbg_btree *tree, zend_ulong lower_idx, zend_ulong higher_idx) { tree 124 sapi/phpdbg/phpdbg_btree.c pos.tree = tree; tree 132 sapi/phpdbg/phpdbg_btree.c phpdbg_btree_result *result = phpdbg_btree_find_closest(pos->tree, pos->cur); tree 143 sapi/phpdbg/phpdbg_btree.c int phpdbg_btree_insert_or_update(phpdbg_btree *tree, zend_ulong idx, void *ptr, int flags) { tree 144 sapi/phpdbg/phpdbg_btree.c int i = tree->depth - 1; tree 145 sapi/phpdbg/phpdbg_btree.c phpdbg_btree_branch **branch = &tree->branch; tree 166 sapi/phpdbg/phpdbg_btree.c tree->count++; tree 178 sapi/phpdbg/phpdbg_btree.c int phpdbg_btree_delete(phpdbg_btree *tree, zend_ulong idx) { tree 179 sapi/phpdbg/phpdbg_btree.c int i = tree->depth; tree 180 sapi/phpdbg/phpdbg_btree.c phpdbg_btree_branch *branch = tree->branch; tree 199 sapi/phpdbg/phpdbg_btree.c tree->count--; tree 202 sapi/phpdbg/phpdbg_btree.c efree(tree->branch); tree 203 sapi/phpdbg/phpdbg_btree.c tree->branch = NULL; tree 237 sapi/phpdbg/phpdbg_btree.c void phpdbg_btree_dump(phpdbg_btree *tree) { tree 238 sapi/phpdbg/phpdbg_btree.c phpdbg_btree_branch_dump(tree->branch, tree->depth); tree 44 sapi/phpdbg/phpdbg_btree.h phpdbg_btree *tree; tree 49 sapi/phpdbg/phpdbg_btree.h void phpdbg_btree_init(phpdbg_btree *tree, zend_ulong depth); tree 50 sapi/phpdbg/phpdbg_btree.h phpdbg_btree_result *phpdbg_btree_find(phpdbg_btree *tree, zend_ulong idx); tree 51 sapi/phpdbg/phpdbg_btree.h phpdbg_btree_result *phpdbg_btree_find_closest(phpdbg_btree *tree, zend_ulong idx); tree 52 sapi/phpdbg/phpdbg_btree.h phpdbg_btree_position phpdbg_btree_find_between(phpdbg_btree *tree, zend_ulong lower_idx, zend_ulong higher_idx); tree 54 sapi/phpdbg/phpdbg_btree.h int phpdbg_btree_delete(phpdbg_btree *tree, zend_ulong idx); tree 60 sapi/phpdbg/phpdbg_btree.h int phpdbg_btree_insert_or_update(phpdbg_btree *tree, zend_ulong idx, void *ptr, int flags); tree 61 sapi/phpdbg/phpdbg_btree.h #define phpdbg_btree_insert(tree, idx, ptr) phpdbg_btree_insert_or_update(tree, idx, ptr, PHPDBG_BTREE_INSERT) tree 62 sapi/phpdbg/phpdbg_btree.h #define phpdbg_btree_update(tree, idx, ptr) phpdbg_btree_insert_or_update(tree, idx, ptr, PHPDBG_BTREE_UPDATE) tree 63 sapi/phpdbg/phpdbg_btree.h #define phpdbg_btree_overwrite(tree, idx, ptr) phpdbg_btree_insert_or_update(tree, idx, ptr, PHPDBG_BTREE_OWERWRITE) tree 68 sapi/phpdbg/phpdbg_btree.h void phpdbg_btree_dump(phpdbg_btree *tree);