Lines Matching refs:iHeight
150757 int iHeight; /* Height of this node in tree */
150761 fts3GetVarint32(zNode, &iHeight);
150765 if( rc==SQLITE_OK && iHeight>1 ){
161028 int iHeight,
161032 assert( iHeight>=1 && iHeight<128 );
161034 pTree->aData[nStart] = (char)iHeight;
161055 int iHeight, /* Height of this node in tree */
161066 int nStart = fts3TreeFinishNode(pTree, iHeight, iLeaf);
161075 int nStart = fts3TreeFinishNode(pIter, iHeight, iNextLeaf);
161085 p, pTree->pParent, iHeight+1, iFree, iNextFree, piLast, paRoot, pnRoot
163418 static void fts3StartNode(Blob *pNode, int iHeight, sqlite3_int64 iChild){
163419 pNode->a[0] = (char)iHeight;
169102 int iHeight, /* Height of sub-tree rooted at pCell */
169110 for(ii=0; rc==SQLITE_OK && ii<(pRtree->iDepth-iHeight); ii++){
169452 int iHeight
169455 xSetMapping = ((iHeight==0)?rowidWrite:parentWrite);
169456 if( iHeight>0 ){
169471 int iHeight
169545 rc = rtreeInsertCell(pRtree, pLeft->pParent, &leftbbox, iHeight+1);
169561 if( (rc = rtreeInsertCell(pRtree, pRight->pParent, &rightbbox, iHeight+1)) ){
169567 rc = updateMapping(pRtree, iRowid, pRight, iHeight);
169578 rc = updateMapping(pRtree, iRowid, pLeft, iHeight);
169584 rc = updateMapping(pRtree, pCell->iRowid, pLeft, iHeight);
169646 static int removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight){
169659 rc = deleteCell(pRtree, pParent, iCell, iHeight+1);
169687 pNode->iNode = iHeight;
169722 static int deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight){
169744 rc = removeNode(pRtree, pNode, iHeight);
169757 int iHeight
169823 if( iHeight==0 ){
169839 rc = ChooseLeaf(pRtree, p, iHeight, &pInsert);
169842 rc = rtreeInsertCell(pRtree, pInsert, p, iHeight);
169862 int iHeight
169865 if( iHeight>0 ){
169874 if( iHeight<=pRtree->iReinsertHeight || pNode->iNode==1){
169875 rc = SplitNode(pRtree, pNode, pCell, iHeight);
169877 pRtree->iReinsertHeight = iHeight;
169878 rc = Reinsert(pRtree, pNode, pCell, iHeight);
169883 if( iHeight==0 ){
200354 int iSegid, iHeight, iPgno, bDlidx; /* Rowid compenents */
200355 fts5DecodeRowid(iKey, &iSegid, &bDlidx, &iHeight, &iPgno);
200366 bDlidx ? "dlidx " : "", iSegid, iHeight, iPgno
200541 int iSegid,iHeight,iPgno,bDlidx;/* Rowid components */
200565 fts5DecodeRowid(iRowid, &iSegid, &bDlidx, &iHeight, &iPgno);