Home | History | Annotate | Download | only in dist

Lines Matching defs:iDepth

38188 ** tree with depth of iDepth.  A depth of 1 means the tree contains a single
38201 int iDepth
38208 if( iDepth==1 ){
38214 pLeft = rowSetNDeepTree(ppList, iDepth-1);
38221 p->pRight = rowSetNDeepTree(ppList, iDepth-1);
38230 int iDepth; /* Depth of the tree so far */
38238 for(iDepth=1; pList; iDepth++){
38243 p->pRight = rowSetNDeepTree(&pList, iDepth);
130310 int iDepth; /* Current depth of the r-tree structure */
130672 /* If the root node was just loaded, set pRtree->iDepth to the height
130679 pRtree->iDepth = readInt16(pNode->zData);
130680 if( pRtree->iDepth>RTREE_MAX_DEPTH ){
130805 pRtree->iDepth = -1;
131464 rc = descendToCell(pRtree, pCsr, pRtree->iDepth, &isEof);
131728 for(ii=0; rc==SQLITE_OK && ii<(pRtree->iDepth-iHeight); ii++){
131746 if( ii==(pRtree->iDepth-1) ){
131774 if( ii==(pRtree->iDepth-1) ){
132368 pRtree->iDepth++;
132370 writeInt16(pNode->zData, pRtree->iDepth);
132804 /* Obtain a reference to the root node to initialise Rtree.iDepth */
132842 if( rc==SQLITE_OK && pRtree->iDepth>0 && NCELL(pRoot)==1 ){
132848 rc = removeNode(pRtree, pChild, pRtree->iDepth-1);
132853 pRtree->iDepth--;
132854 writeInt16(pRoot->zData, pRtree->iDepth);