Home | History | Annotate | Download | only in orig

Lines Matching defs:iHeight

126081 ** varint iHeight;             (height from leaf level, always 0)
126127 ** varint iHeight; (height from leaf level, always >0)
128690 int iHeight; /* Height of this node in tree */
128694 fts3GetVarint32(zNode, &iHeight);
128698 if( rc==SQLITE_OK && iHeight>1 ){
138790 int iHeight,
138794 assert( iHeight>=1 && iHeight<128 );
138796 pTree->aData[nStart] = (char)iHeight;
138817 int iHeight, /* Height of this node in tree */
138828 int nStart = fts3TreeFinishNode(pTree, iHeight, iLeaf);
138837 int nStart = fts3TreeFinishNode(pIter, iHeight, iNextLeaf);
138847 p, pTree->pParent, iHeight+1, iFree, iNextFree, piLast, paRoot, pnRoot
141174 static void fts3StartNode(Blob *pNode, int iHeight, sqlite3_int64 iChild){
141175 pNode->a[0] = (char)iHeight;
146493 int iHeight, /* Height of sub-tree rooted at pCell */
146501 for(ii=0; rc==SQLITE_OK && ii<(pRtree->iDepth-iHeight); ii++){
146843 int iHeight
146846 xSetMapping = ((iHeight==0)?rowidWrite:parentWrite);
146847 if( iHeight>0 ){
146862 int iHeight
146936 rc = rtreeInsertCell(pRtree, pLeft->pParent, &leftbbox, iHeight+1);
146952 if( (rc = rtreeInsertCell(pRtree, pRight->pParent, &rightbbox, iHeight+1)) ){
146958 rc = updateMapping(pRtree, iRowid, pRight, iHeight);
146969 rc = updateMapping(pRtree, iRowid, pLeft, iHeight);
146975 rc = updateMapping(pRtree, pCell->iRowid, pLeft, iHeight);
147037 static int removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight){
147050 rc = deleteCell(pRtree, pParent, iCell, iHeight+1);
147078 pNode->iNode = iHeight;
147113 static int deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight){
147135 rc = removeNode(pRtree, pNode, iHeight);
147148 int iHeight
147214 if( iHeight==0 ){
147230 rc = ChooseLeaf(pRtree, p, iHeight, &pInsert);
147233 rc = rtreeInsertCell(pRtree, pInsert, p, iHeight);
147247 ** subtree iHeight high (leaf nodes have iHeight==0).
147253 int iHeight
147256 if( iHeight>0 ){
147265 if( iHeight<=pRtree->iReinsertHeight || pNode->iNode==1){
147266 rc = SplitNode(pRtree, pNode, pCell, iHeight);
147268 pRtree->iReinsertHeight = iHeight;
147269 rc = Reinsert(pRtree, pNode, pCell, iHeight);
147274 if( iHeight==0 ){