Lines Matching refs:iHeight
195647 int iHeight; /* Height of this node in tree */ local
195651 fts3GetVarint32(zNode, &iHeight);
195655 if( rc==SQLITE_OK && iHeight>1 ){
195675 if( iNewHeight>=iHeight ){
206148 int iHeight, argument
206152 assert( iHeight>=1 && iHeight<128 );
206154 pTree->aData[nStart] = (char)iHeight;
206175 int iHeight, /* Height of this node in tree */ argument
206186 int nStart = fts3TreeFinishNode(pTree, iHeight, iLeaf);
206195 int nStart = fts3TreeFinishNode(pIter, iHeight, iNextLeaf);
206205 p, pTree->pParent, iHeight+1, iFree, iNextFree, piLast, paRoot, pnRoot
208607 static void fts3StartNode(Blob *pNode, int iHeight, sqlite3_int64 iChild){ argument
208608 pNode->a[0] = (char)iHeight;
220351 int iHeight, /* Height of sub-tree rooted at pCell */ argument
220359 for(ii=0; rc==SQLITE_OK && ii<(pRtree->iDepth-iHeight); ii++){
220653 int iHeight argument
220656 xSetMapping = ((iHeight==0)?rowidWrite:parentWrite);
220657 if( iHeight>0 ){
220677 int iHeight argument
220751 rc = rtreeInsertCell(pRtree, pLeft->pParent, &leftbbox, iHeight+1);
220768 if( (rc = rtreeInsertCell(pRtree, pRight->pParent, &rightbbox, iHeight+1)) ){
220774 rc = updateMapping(pRtree, iRowid, pRight, iHeight);
220785 rc = updateMapping(pRtree, iRowid, pLeft, iHeight);
220791 rc = updateMapping(pRtree, pCell->iRowid, pLeft, iHeight);
220847 static int removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight){ argument
220860 rc = deleteCell(pRtree, pParent, iCell, iHeight+1);
220889 pNode->iNode = iHeight;
220924 static int deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight){ argument
220946 rc = removeNode(pRtree, pNode, iHeight);
220963 int iHeight argument
220966 if( iHeight>0 ){
220975 rc = SplitNode(pRtree, pNode, pCell, iHeight);
220979 if( iHeight==0 ){
246286 int iHeight; /* Distance to tree leaf nodes */ member
246377 assert( p->iHeight==0 );
246383 iMaxChild = MAX(iMaxChild, pChild->iHeight);
246386 assert( p->iHeight==iMaxChild+1 );
248502 p->iHeight = MAX(p->iHeight, p->apChild[ii]->iHeight + 1);
248534 pRet->iHeight = 1;
248646 if( pRet->iHeight>SQLITE_FTS5_MAX_EXPR_DEPTH ){
258844 int iSegid, iHeight, iPgno, bDlidx, bTomb; /* Rowid components */ local
258845 fts5DecodeRowid(iKey, &bTomb, &iSegid, &bDlidx, &iHeight, &iPgno);
258858 iSegid, iHeight, iPgno
259071 int iSegid,iHeight,iPgno,bDlidx;/* Rowid components */ local
259095 fts5DecodeRowid(iRowid, &bTomb, &iSegid, &bDlidx, &iHeight, &iPgno);