Lines Matching defs:iHeight

169190 ** varint iHeight;             (height from leaf level, always 0)
169236 ** varint iHeight; (height from leaf level, always >0)
172026 int iHeight; /* Height of this node in tree */
172030 fts3GetVarint32(zNode, &iHeight);
172034 if( rc==SQLITE_OK && iHeight>1 ){
172054 if( iNewHeight>=iHeight ){
182358 int iHeight,
182362 assert( iHeight>=1 && iHeight<128 );
182364 pTree->aData[nStart] = (char)iHeight;
182385 int iHeight, /* Height of this node in tree */
182396 int nStart = fts3TreeFinishNode(pTree, iHeight, iLeaf);
182405 int nStart = fts3TreeFinishNode(pIter, iHeight, iNextLeaf);
182415 p, pTree->pParent, iHeight+1, iFree, iNextFree, piLast, paRoot, pnRoot
184796 static void fts3StartNode(Blob *pNode, int iHeight, sqlite3_int64 iChild){
184797 pNode->a[0] = (char)iHeight;
193377 int iHeight, /* Height of sub-tree rooted at pCell */
193385 for(ii=0; rc==SQLITE_OK && ii<(pRtree->iDepth-iHeight); ii++){
193729 int iHeight
193732 xSetMapping = ((iHeight==0)?rowidWrite:parentWrite);
193733 if( iHeight>0 ){
193748 int iHeight
193822 rc = rtreeInsertCell(pRtree, pLeft->pParent, &leftbbox, iHeight+1);
193838 if( (rc = rtreeInsertCell(pRtree, pRight->pParent, &rightbbox, iHeight+1)) ){
193844 rc = updateMapping(pRtree, iRowid, pRight, iHeight);
193855 rc = updateMapping(pRtree, iRowid, pLeft, iHeight);
193861 rc = updateMapping(pRtree, pCell->iRowid, pLeft, iHeight);
193926 static int removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight){
193939 rc = deleteCell(pRtree, pParent, iCell, iHeight+1);
193967 pNode->iNode = iHeight;
194002 static int deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight){
194024 rc = removeNode(pRtree, pNode, iHeight);
194037 int iHeight
194103 if( iHeight==0 ){
194119 rc = ChooseLeaf(pRtree, p, iHeight, &pInsert);
194122 rc = rtreeInsertCell(pRtree, pInsert, p, iHeight);
194136 ** subtree iHeight high (leaf nodes have iHeight==0).
194142 int iHeight
194145 if( iHeight>0 ){
194154 if( iHeight<=pRtree->iReinsertHeight || pNode->iNode==1){
194155 rc = SplitNode(pRtree, pNode, pCell, iHeight);
194157 pRtree->iReinsertHeight = iHeight;
194158 rc = Reinsert(pRtree, pNode, pCell, iHeight);
194163 if( iHeight==0 ){
226061 int iSegid, iHeight, iPgno, bDlidx; /* Rowid compenents */
226062 fts5DecodeRowid(iKey, &iSegid, &bDlidx, &iHeight, &iPgno);
226073 bDlidx ? "dlidx " : "", iSegid, iHeight, iPgno
226248 int iSegid,iHeight,iPgno,bDlidx;/* Rowid components */
226271 fts5DecodeRowid(iRowid, &iSegid, &bDlidx, &iHeight, &iPgno);