Home | History | Annotate | Download | only in orig

Lines Matching defs:iHeight

135080 ** varint iHeight;             (height from leaf level, always 0)
135126 ** varint iHeight; (height from leaf level, always >0)
137759 int iHeight; /* Height of this node in tree */
137763 fts3GetVarint32(zNode, &iHeight);
137767 if( rc==SQLITE_OK && iHeight>1 ){
147993 int iHeight,
147997 assert( iHeight>=1 && iHeight<128 );
147999 pTree->aData[nStart] = (char)iHeight;
148020 int iHeight, /* Height of this node in tree */
148031 int nStart = fts3TreeFinishNode(pTree, iHeight, iLeaf);
148040 int nStart = fts3TreeFinishNode(pIter, iHeight, iNextLeaf);
148050 p, pTree->pParent, iHeight+1, iFree, iNextFree, piLast, paRoot, pnRoot
150378 static void fts3StartNode(Blob *pNode, int iHeight, sqlite3_int64 iChild){
150379 pNode->a[0] = (char)iHeight;
155899 int iHeight, /* Height of sub-tree rooted at pCell */
155907 for(ii=0; rc==SQLITE_OK && ii<(pRtree->iDepth-iHeight); ii++){
156249 int iHeight
156252 xSetMapping = ((iHeight==0)?rowidWrite:parentWrite);
156253 if( iHeight>0 ){
156268 int iHeight
156342 rc = rtreeInsertCell(pRtree, pLeft->pParent, &leftbbox, iHeight+1);
156358 if( (rc = rtreeInsertCell(pRtree, pRight->pParent, &rightbbox, iHeight+1)) ){
156364 rc = updateMapping(pRtree, iRowid, pRight, iHeight);
156375 rc = updateMapping(pRtree, iRowid, pLeft, iHeight);
156381 rc = updateMapping(pRtree, pCell->iRowid, pLeft, iHeight);
156443 static int removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight){
156456 rc = deleteCell(pRtree, pParent, iCell, iHeight+1);
156484 pNode->iNode = iHeight;
156519 static int deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight){
156541 rc = removeNode(pRtree, pNode, iHeight);
156554 int iHeight
156620 if( iHeight==0 ){
156636 rc = ChooseLeaf(pRtree, p, iHeight, &pInsert);
156639 rc = rtreeInsertCell(pRtree, pInsert, p, iHeight);
156653 ** subtree iHeight high (leaf nodes have iHeight==0).
156659 int iHeight
156662 if( iHeight>0 ){
156671 if( iHeight<=pRtree->iReinsertHeight || pNode->iNode==1){
156672 rc = SplitNode(pRtree, pNode, pCell, iHeight);
156674 pRtree->iReinsertHeight = iHeight;
156675 rc = Reinsert(pRtree, pNode, pCell, iHeight);
156680 if( iHeight==0 ){
177882 int iSegid, iHeight, iPgno, bDlidx; /* Rowid compenents */
177883 fts5DecodeRowid(iKey, &iSegid, &bDlidx, &iHeight, &iPgno);
177894 bDlidx ? "dlidx " : "", iSegid, iHeight, iPgno
178027 int iSegid,iHeight,iPgno,bDlidx;/* Rowid components */
178049 fts5DecodeRowid(iRowid, &iSegid, &bDlidx, &iHeight, &iPgno);