Lines Matching refs:iHeight
147904 int iHeight; /* Height of this node in tree */
147908 fts3GetVarint32(zNode, &iHeight);
147912 if( rc==SQLITE_OK && iHeight>1 ){
158159 int iHeight,
158163 assert( iHeight>=1 && iHeight<128 );
158165 pTree->aData[nStart] = (char)iHeight;
158186 int iHeight, /* Height of this node in tree */
158197 int nStart = fts3TreeFinishNode(pTree, iHeight, iLeaf);
158206 int nStart = fts3TreeFinishNode(pIter, iHeight, iNextLeaf);
158216 p, pTree->pParent, iHeight+1, iFree, iNextFree, piLast, paRoot, pnRoot
160549 static void fts3StartNode(Blob *pNode, int iHeight, sqlite3_int64 iChild){
160550 pNode->a[0] = (char)iHeight;
166261 int iHeight, /* Height of sub-tree rooted at pCell */
166269 for(ii=0; rc==SQLITE_OK && ii<(pRtree->iDepth-iHeight); ii++){
166611 int iHeight
166614 xSetMapping = ((iHeight==0)?rowidWrite:parentWrite);
166615 if( iHeight>0 ){
166630 int iHeight
166704 rc = rtreeInsertCell(pRtree, pLeft->pParent, &leftbbox, iHeight+1);
166720 if( (rc = rtreeInsertCell(pRtree, pRight->pParent, &rightbbox, iHeight+1)) ){
166726 rc = updateMapping(pRtree, iRowid, pRight, iHeight);
166737 rc = updateMapping(pRtree, iRowid, pLeft, iHeight);
166743 rc = updateMapping(pRtree, pCell->iRowid, pLeft, iHeight);
166805 static int removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight){
166818 rc = deleteCell(pRtree, pParent, iCell, iHeight+1);
166846 pNode->iNode = iHeight;
166881 static int deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight){
166903 rc = removeNode(pRtree, pNode, iHeight);
166916 int iHeight
166982 if( iHeight==0 ){
166998 rc = ChooseLeaf(pRtree, p, iHeight, &pInsert);
167001 rc = rtreeInsertCell(pRtree, pInsert, p, iHeight);
167021 int iHeight
167024 if( iHeight>0 ){
167033 if( iHeight<=pRtree->iReinsertHeight || pNode->iNode==1){
167034 rc = SplitNode(pRtree, pNode, pCell, iHeight);
167036 pRtree->iReinsertHeight = iHeight;
167037 rc = Reinsert(pRtree, pNode, pCell, iHeight);
167042 if( iHeight==0 ){
196174 int iSegid, iHeight, iPgno, bDlidx; /* Rowid compenents */
196175 fts5DecodeRowid(iKey, &iSegid, &bDlidx, &iHeight, &iPgno);
196186 bDlidx ? "dlidx " : "", iSegid, iHeight, iPgno
196361 int iSegid,iHeight,iPgno,bDlidx;/* Rowid components */
196385 fts5DecodeRowid(iRowid, &iSegid, &bDlidx, &iHeight, &iPgno);