Searched defs:tree (Results 1 - 6 of 6) sorted by relevance
| /PHP_5_3/ext/sqlite/libsqlite/src/ |
| H A D | btree_rb.c | 116 RbtCursor *pCursors; /* All cursors pointing to this tree */ 117 BtRbNode *pHead; /* Head of the tree, or NULL */ 126 BtRbNode *pParent; /* Nodes parent node, NULL for the tree head */ 140 static int memRbtreeClearTable(Rbtree* tree, int n); 193 * Perform the LEFT-rotate transformation on node X of tree pTree. This 225 * Perform the RIGHT-rotate transformation on node X of tree pTree. This 277 * a problem with a red-black binary tree. 321 * Check the following properties of the red-black tree: 328 static void check_redblack_tree(BtRbTree * tree, char ** msg) argument 337 pNode = tree 644 memRbtreeCreateTable(Rbtree* tree, int* n) argument 668 memRbtreeDropTable(Rbtree* tree, int n) argument 714 memRbtreeCursor( Rbtree* tree, int iTable, int wrFlag, RbtCursor **ppCur ) argument 1026 memRbtreeClearTable(Rbtree* tree, int n) argument 1225 memRbtreeGetMeta(Rbtree* tree, int* aMeta) argument 1231 memRbtreeUpdateMeta(Rbtree* tree, int* aMeta) argument 1242 memRbtreeIntegrityCheck(Rbtree* tree, int* aRoot, int nRoot) argument 1255 memRbtreeSetCacheSize(Rbtree* tree, int sz) argument 1264 memRbtreeBeginTrans(Rbtree* tree) argument 1287 memRbtreeCommit(Rbtree* tree) argument 1301 memRbtreeClose(Rbtree* tree) argument 1361 memRbtreeRollback(Rbtree* tree) argument 1373 memRbtreeBeginCkpt(Rbtree* tree) argument 1384 memRbtreeCommitCkpt(Rbtree* tree) argument 1398 memRbtreeRollbackCkpt(Rbtree* tree) argument 1410 memRbtreePageDump(Rbtree* tree, int pgno, int rec) argument 1423 memRbtreePager(Rbtree* tree) argument [all...] |
| /PHP_5_3/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 146 ** The maximum depth of an expression tree. This is limited to 651 ** hash of the entire source tree. 3257 ** <dd>The maximum depth of the parse tree on any expression.</dd>)^ 7932 sqlite3_vfs *pVfs, /* VFS to use with this b-tree */ 7949 #define BTREE_SINGLE 8 /* The file contains at most 1 b-tree */ 10188 ** Each node of an expression in the parse tree is an instance 10195 ** tree. 10289 int nHeight; /* Height of the tree headed by this node */ 10380 ** the parse tree for an expression and the span of input text for an 10384 Expr *pExpr; /* The expression parse tree */ 127515 Rtree tree; local [all...] |
| /PHP_5_3/ext/tidy/examples/ |
| H A D | dumpit5.php | 21 $tree = $tidy->root(); variable 22 dump_tree($tree);
|
| /PHP_5_3/ext/dom/ |
| H A D | documentfragment.c | 89 static void php_dom_xmlSetTreeDoc(xmlNodePtr tree, xmlDocPtr doc) /* {{{ */ argument 94 if (tree) { 95 if(tree->type == XML_ELEMENT_NODE) { 96 prop = tree->properties; 109 if (tree->children != NULL) { 110 cur = tree->children; 116 tree->doc = doc;
|
| H A D | element.c | 698 static xmlNsPtr _dom_new_reconNs(xmlDocPtr doc, xmlNodePtr tree, xmlNsPtr ns) /* {{{ */ argument 704 if ((tree == NULL) || (ns == NULL) || (ns->type != XML_NAMESPACE_DECL)) { 718 def = xmlSearchNs(doc, tree, prefix); 726 def = xmlSearchNs(doc, tree, prefix); 732 def = xmlNewNs(tree, ns->href, prefix);
|
| /PHP_5_3/ext/imap/ |
| H A D | php_imap.c | 4671 static void build_thread_tree_helper(THREADNODE *cur, zval *tree, long *numNodes, char *buf) argument 4678 add_assoc_long(tree, buf, cur->num); 4683 add_assoc_long(tree, buf, *numNodes); 4684 build_thread_tree_helper(cur->next, tree, numNodes, buf); 4686 add_assoc_long(tree, buf, 0); 4692 add_assoc_long(tree, buf, *numNodes); 4693 build_thread_tree_helper(cur->branch, tree, numNodes, buf); 4695 add_assoc_long(tree, buf, 0); 4702 static int build_thread_tree(THREADNODE *top, zval **tree) argument 4707 array_init(*tree); [all...] |
Completed in 103 milliseconds