• Home
  • Raw
  • Download

Lines Matching refs:iHeight

150742   int iHeight;                    /* Height of this node in tree */
150746 fts3GetVarint32(zNode, &iHeight);
150750 if( rc==SQLITE_OK && iHeight>1 ){
161001 int iHeight,
161005 assert( iHeight>=1 && iHeight<128 );
161007 pTree->aData[nStart] = (char)iHeight;
161028 int iHeight, /* Height of this node in tree */
161039 int nStart = fts3TreeFinishNode(pTree, iHeight, iLeaf);
161048 int nStart = fts3TreeFinishNode(pIter, iHeight, iNextLeaf);
161058 p, pTree->pParent, iHeight+1, iFree, iNextFree, piLast, paRoot, pnRoot
163391 static void fts3StartNode(Blob *pNode, int iHeight, sqlite3_int64 iChild){
163392 pNode->a[0] = (char)iHeight;
169075 int iHeight, /* Height of sub-tree rooted at pCell */
169083 for(ii=0; rc==SQLITE_OK && ii<(pRtree->iDepth-iHeight); ii++){
169425 int iHeight
169428 xSetMapping = ((iHeight==0)?rowidWrite:parentWrite);
169429 if( iHeight>0 ){
169444 int iHeight
169518 rc = rtreeInsertCell(pRtree, pLeft->pParent, &leftbbox, iHeight+1);
169534 if( (rc = rtreeInsertCell(pRtree, pRight->pParent, &rightbbox, iHeight+1)) ){
169540 rc = updateMapping(pRtree, iRowid, pRight, iHeight);
169551 rc = updateMapping(pRtree, iRowid, pLeft, iHeight);
169557 rc = updateMapping(pRtree, pCell->iRowid, pLeft, iHeight);
169619 static int removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight){
169632 rc = deleteCell(pRtree, pParent, iCell, iHeight+1);
169660 pNode->iNode = iHeight;
169695 static int deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight){
169717 rc = removeNode(pRtree, pNode, iHeight);
169730 int iHeight
169796 if( iHeight==0 ){
169812 rc = ChooseLeaf(pRtree, p, iHeight, &pInsert);
169815 rc = rtreeInsertCell(pRtree, pInsert, p, iHeight);
169835 int iHeight
169838 if( iHeight>0 ){
169847 if( iHeight<=pRtree->iReinsertHeight || pNode->iNode==1){
169848 rc = SplitNode(pRtree, pNode, pCell, iHeight);
169850 pRtree->iReinsertHeight = iHeight;
169851 rc = Reinsert(pRtree, pNode, pCell, iHeight);
169856 if( iHeight==0 ){
200333 int iSegid, iHeight, iPgno, bDlidx; /* Rowid compenents */
200334 fts5DecodeRowid(iKey, &iSegid, &bDlidx, &iHeight, &iPgno);
200345 bDlidx ? "dlidx " : "", iSegid, iHeight, iPgno
200520 int iSegid,iHeight,iPgno,bDlidx;/* Rowid components */
200544 fts5DecodeRowid(iRowid, &iSegid, &bDlidx, &iHeight, &iPgno);