Lines Matching defs:iDepth
38160 ** tree with depth of iDepth. A depth of 1 means the tree contains a single
38173 int iDepth
38180 if( iDepth==1 ){
38186 pLeft = rowSetNDeepTree(ppList, iDepth-1);
38193 p->pRight = rowSetNDeepTree(ppList, iDepth-1);
38202 int iDepth; /* Depth of the tree so far */
38210 for(iDepth=1; pList; iDepth++){
38215 p->pRight = rowSetNDeepTree(&pList, iDepth);
130262 int iDepth; /* Current depth of the r-tree structure */
130624 /* If the root node was just loaded, set pRtree->iDepth to the height
130631 pRtree->iDepth = readInt16(pNode->zData);
130632 if( pRtree->iDepth>RTREE_MAX_DEPTH ){
130757 pRtree->iDepth = -1;
131416 rc = descendToCell(pRtree, pCsr, pRtree->iDepth, &isEof);
131680 for(ii=0; rc==SQLITE_OK && ii<(pRtree->iDepth-iHeight); ii++){
131698 if( ii==(pRtree->iDepth-1) ){
131726 if( ii==(pRtree->iDepth-1) ){
132320 pRtree->iDepth++;
132322 writeInt16(pNode->zData, pRtree->iDepth);
132756 /* Obtain a reference to the root node to initialise Rtree.iDepth */
132794 if( rc==SQLITE_OK && pRtree->iDepth>0 && NCELL(pRoot)==1 ){
132800 rc = removeNode(pRtree, pChild, pRtree->iDepth-1);
132805 pRtree->iDepth--;
132806 writeInt16(pRoot->zData, pRtree->iDepth);