Lines Matching refs:iHeight

134901   int iHeight;                    /* Height of this node in tree */
134905 fts3GetVarint32(zNode, &iHeight);
134909 if( rc==SQLITE_OK && iHeight>1 ){
145083 int iHeight,
145087 assert( iHeight>=1 && iHeight<128 );
145089 pTree->aData[nStart] = (char)iHeight;
145110 int iHeight, /* Height of this node in tree */
145121 int nStart = fts3TreeFinishNode(pTree, iHeight, iLeaf);
145130 int nStart = fts3TreeFinishNode(pIter, iHeight, iNextLeaf);
145140 p, pTree->pParent, iHeight+1, iFree, iNextFree, piLast, paRoot, pnRoot
147468 static void fts3StartNode(Blob *pNode, int iHeight, sqlite3_int64 iChild){
147469 pNode->a[0] = (char)iHeight;
152846 int iHeight, /* Height of sub-tree rooted at pCell */
152854 for(ii=0; rc==SQLITE_OK && ii<(pRtree->iDepth-iHeight); ii++){
153196 int iHeight
153199 xSetMapping = ((iHeight==0)?rowidWrite:parentWrite);
153200 if( iHeight>0 ){
153215 int iHeight
153289 rc = rtreeInsertCell(pRtree, pLeft->pParent, &leftbbox, iHeight+1);
153305 if( (rc = rtreeInsertCell(pRtree, pRight->pParent, &rightbbox, iHeight+1)) ){
153311 rc = updateMapping(pRtree, iRowid, pRight, iHeight);
153322 rc = updateMapping(pRtree, iRowid, pLeft, iHeight);
153328 rc = updateMapping(pRtree, pCell->iRowid, pLeft, iHeight);
153390 static int removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight){
153403 rc = deleteCell(pRtree, pParent, iCell, iHeight+1);
153431 pNode->iNode = iHeight;
153466 static int deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight){
153488 rc = removeNode(pRtree, pNode, iHeight);
153501 int iHeight
153567 if( iHeight==0 ){
153583 rc = ChooseLeaf(pRtree, p, iHeight, &pInsert);
153586 rc = rtreeInsertCell(pRtree, pInsert, p, iHeight);
153606 int iHeight
153609 if( iHeight>0 ){
153618 if( iHeight<=pRtree->iReinsertHeight || pNode->iNode==1){
153619 rc = SplitNode(pRtree, pNode, pCell, iHeight);
153621 pRtree->iReinsertHeight = iHeight;
153622 rc = Reinsert(pRtree, pNode, pCell, iHeight);
153627 if( iHeight==0 ){