• Home
  • Raw
  • Download

Lines Matching refs:iHeight

147904   int iHeight;                    /* Height of this node in tree */
147908 fts3GetVarint32(zNode, &iHeight);
147912 if( rc==SQLITE_OK && iHeight>1 ){
158172 int iHeight,
158176 assert( iHeight>=1 && iHeight<128 );
158178 pTree->aData[nStart] = (char)iHeight;
158199 int iHeight, /* Height of this node in tree */
158210 int nStart = fts3TreeFinishNode(pTree, iHeight, iLeaf);
158219 int nStart = fts3TreeFinishNode(pIter, iHeight, iNextLeaf);
158229 p, pTree->pParent, iHeight+1, iFree, iNextFree, piLast, paRoot, pnRoot
160562 static void fts3StartNode(Blob *pNode, int iHeight, sqlite3_int64 iChild){
160563 pNode->a[0] = (char)iHeight;
166274 int iHeight, /* Height of sub-tree rooted at pCell */
166282 for(ii=0; rc==SQLITE_OK && ii<(pRtree->iDepth-iHeight); ii++){
166624 int iHeight
166627 xSetMapping = ((iHeight==0)?rowidWrite:parentWrite);
166628 if( iHeight>0 ){
166643 int iHeight
166717 rc = rtreeInsertCell(pRtree, pLeft->pParent, &leftbbox, iHeight+1);
166733 if( (rc = rtreeInsertCell(pRtree, pRight->pParent, &rightbbox, iHeight+1)) ){
166739 rc = updateMapping(pRtree, iRowid, pRight, iHeight);
166750 rc = updateMapping(pRtree, iRowid, pLeft, iHeight);
166756 rc = updateMapping(pRtree, pCell->iRowid, pLeft, iHeight);
166818 static int removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight){
166831 rc = deleteCell(pRtree, pParent, iCell, iHeight+1);
166859 pNode->iNode = iHeight;
166894 static int deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight){
166916 rc = removeNode(pRtree, pNode, iHeight);
166929 int iHeight
166995 if( iHeight==0 ){
167011 rc = ChooseLeaf(pRtree, p, iHeight, &pInsert);
167014 rc = rtreeInsertCell(pRtree, pInsert, p, iHeight);
167034 int iHeight
167037 if( iHeight>0 ){
167046 if( iHeight<=pRtree->iReinsertHeight || pNode->iNode==1){
167047 rc = SplitNode(pRtree, pNode, pCell, iHeight);
167049 pRtree->iReinsertHeight = iHeight;
167050 rc = Reinsert(pRtree, pNode, pCell, iHeight);
167055 if( iHeight==0 ){
196187 int iSegid, iHeight, iPgno, bDlidx; /* Rowid compenents */
196188 fts5DecodeRowid(iKey, &iSegid, &bDlidx, &iHeight, &iPgno);
196199 bDlidx ? "dlidx " : "", iSegid, iHeight, iPgno
196374 int iSegid,iHeight,iPgno,bDlidx;/* Rowid components */
196398 fts5DecodeRowid(iRowid, &iSegid, &bDlidx, &iHeight, &iPgno);