Lines Matching refs:iHeight

150741   int iHeight;                    /* Height of this node in tree */
150745 fts3GetVarint32(zNode, &iHeight);
150749 if( rc==SQLITE_OK && iHeight>1 ){
161000 int iHeight,
161004 assert( iHeight>=1 && iHeight<128 );
161006 pTree->aData[nStart] = (char)iHeight;
161027 int iHeight, /* Height of this node in tree */
161038 int nStart = fts3TreeFinishNode(pTree, iHeight, iLeaf);
161047 int nStart = fts3TreeFinishNode(pIter, iHeight, iNextLeaf);
161057 p, pTree->pParent, iHeight+1, iFree, iNextFree, piLast, paRoot, pnRoot
163390 static void fts3StartNode(Blob *pNode, int iHeight, sqlite3_int64 iChild){
163391 pNode->a[0] = (char)iHeight;
169074 int iHeight, /* Height of sub-tree rooted at pCell */
169082 for(ii=0; rc==SQLITE_OK && ii<(pRtree->iDepth-iHeight); ii++){
169424 int iHeight
169427 xSetMapping = ((iHeight==0)?rowidWrite:parentWrite);
169428 if( iHeight>0 ){
169443 int iHeight
169517 rc = rtreeInsertCell(pRtree, pLeft->pParent, &leftbbox, iHeight+1);
169533 if( (rc = rtreeInsertCell(pRtree, pRight->pParent, &rightbbox, iHeight+1)) ){
169539 rc = updateMapping(pRtree, iRowid, pRight, iHeight);
169550 rc = updateMapping(pRtree, iRowid, pLeft, iHeight);
169556 rc = updateMapping(pRtree, pCell->iRowid, pLeft, iHeight);
169618 static int removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight){
169631 rc = deleteCell(pRtree, pParent, iCell, iHeight+1);
169659 pNode->iNode = iHeight;
169694 static int deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight){
169716 rc = removeNode(pRtree, pNode, iHeight);
169729 int iHeight
169795 if( iHeight==0 ){
169811 rc = ChooseLeaf(pRtree, p, iHeight, &pInsert);
169814 rc = rtreeInsertCell(pRtree, pInsert, p, iHeight);
169834 int iHeight
169837 if( iHeight>0 ){
169846 if( iHeight<=pRtree->iReinsertHeight || pNode->iNode==1){
169847 rc = SplitNode(pRtree, pNode, pCell, iHeight);
169849 pRtree->iReinsertHeight = iHeight;
169850 rc = Reinsert(pRtree, pNode, pCell, iHeight);
169855 if( iHeight==0 ){
200326 int iSegid, iHeight, iPgno, bDlidx; /* Rowid compenents */
200327 fts5DecodeRowid(iKey, &iSegid, &bDlidx, &iHeight, &iPgno);
200338 bDlidx ? "dlidx " : "", iSegid, iHeight, iPgno
200513 int iSegid,iHeight,iPgno,bDlidx;/* Rowid components */
200537 fts5DecodeRowid(iRowid, &iSegid, &bDlidx, &iHeight, &iPgno);