Home | History | Annotate | Download | only in orig

Lines Matching defs:iHeight

145171 ** varint iHeight;             (height from leaf level, always 0)
145217 ** varint iHeight; (height from leaf level, always >0)
147887 int iHeight
147891 fts3GetVarint32(zNode, &iHeight);
147895 if( rc==SQLITE_OK && iHeight>1 ){
158140 int iHeight,
158144 assert( iHeight>=1 && iHeight<128 );
158146 pTree->aData[nStart] = (char)iHeight;
158167 int iHeight, /* Height of this node in tree */
158178 int nStart = fts3TreeFinishNode(pTree, iHeight, iLeaf);
158187 int nStart = fts3TreeFinishNode(pIter, iHeight, iNextLeaf);
158197 p, pTree->pParent, iHeight+1, iFree, iNextFree, piLast, paRoot, pnRoot
160525 static void fts3StartNode(Blob *pNode, int iHeight, sqlite3_int64 iChild){
160526 pNode->a[0] = (char)iHeight;
166237 int iHeight, /* Height of sub-tree rooted at pCell */
166245 for(ii=0; rc==SQLITE_OK && ii<(pRtree->iDepth-iHeight); ii++){
166587 int iHeight
166590 xSetMapping = ((iHeight==0)?rowidWrite:parentWrite);
166591 if( iHeight>0 ){
166606 int iHeight
166680 rc = rtreeInsertCell(pRtree, pLeft->pParent, &leftbbox, iHeight+1);
166696 if( (rc = rtreeInsertCell(pRtree, pRight->pParent, &rightbbox, iHeight+1)) ){
166702 rc = updateMapping(pRtree, iRowid, pRight, iHeight);
166713 rc = updateMapping(pRtree, iRowid, pLeft, iHeight);
166719 rc = updateMapping(pRtree, pCell->iRowid, pLeft, iHeight);
166781 static int removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight){
166794 rc = deleteCell(pRtree, pParent, iCell, iHeight+1);
166822 pNode->iNode = iHeight;
166857 static int deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight){
166879 rc = removeNode(pRtree, pNode, iHeight);
166892 int iHeight
166958 if( iHeight==0 ){
166974 rc = ChooseLeaf(pRtree, p, iHeight, &pInsert);
166977 rc = rtreeInsertCell(pRtree, pInsert, p, iHeight);
166991 ** subtree iHeight high (leaf nodes have iHeight==0).
166997 int iHeight
167000 if( iHeight>0 ){
167009 if( iHeight<=pRtree->iReinsertHeight || pNode->iNode==1){
167010 rc = SplitNode(pRtree, pNode, pCell, iHeight);
167012 pRtree->iReinsertHeight = iHeight;
167013 rc = Reinsert(pRtree, pNode, pCell, iHeight);
167018 if( iHeight==0 ){
196150 int iSegid, iHeight, iPgno, bDlidx; /* Rowid compenents */
196151 fts5DecodeRowid(iKey, &iSegid, &bDlidx, &iHeight, &iPgno);
196162 bDlidx ? "dlidx " : "", iSegid, iHeight, iPgno
196337 int iSegid,iHeight,iPgno,bDlidx;/* Rowid components */
196361 fts5DecodeRowid(iRowid, &iSegid, &bDlidx, &iHeight, &iPgno);