Lines Matching refs:iDepth
42690 int iDepth
42697 if( iDepth==1 ){
42703 pLeft = rowSetNDeepTree(ppList, iDepth-1);
42710 p->pRight = rowSetNDeepTree(ppList, iDepth-1);
42719 int iDepth; /* Depth of the tree so far */
42727 for(iDepth=1; pList; iDepth++){
42732 p->pRight = rowSetNDeepTree(&pList, iDepth);
154160 int iDepth; /* Current depth of the r-tree structure */
154601 pRtree->iDepth = readInt16(pNode->zData);
154602 if( pRtree->iDepth>RTREE_MAX_DEPTH ){
154724 pRtree->iDepth = -1;
155612 memset(pCsr->anQueue, 0, sizeof(u32)*(pRtree->iDepth + 1));
155630 p->pInfo->mxLevel = pRtree->iDepth + 1;
155643 pNew = rtreeSearchPointNew(pCsr, RTREE_ZERO, pRtree->iDepth+1);
155907 for(ii=0; rc==SQLITE_OK && ii<(pRtree->iDepth-iHeight); ii++){
156304 pRtree->iDepth++;
156306 writeInt16(pNode->zData, pRtree->iDepth);
156777 if( rc==SQLITE_OK && pRtree->iDepth>0 && NCELL(pRoot)==1 ){
156783 rc = removeNode(pRtree, pChild, pRtree->iDepth-1);
156788 pRtree->iDepth--;
156789 writeInt16(pRoot->zData, pRtree->iDepth);