Home
last modified time | relevance | path

Searched refs:iLeaf (Results 1 – 7 of 7) sorted by relevance

/sqlite-3.40.0/ext/repair/
H A Dcheckfreelist.c200 u32 iLeaf = get4byte(&aData[8 + 4*i]); in checkFreelist() local
201 if( iLeaf==0 || iLeaf>nPage ){ in checkFreelist()
204 (int)iLeaf, (int)i, (int)iTrunk in checkFreelist()
/sqlite-3.40.0/src/
H A Dtest_journal.c396 u32 iLeaf; in openTransaction() local
400 for(iLeaf=0; rc==SQLITE_OK && iLeaf<nLeaf; iLeaf++){ in openTransaction()
401 u32 pgno = decodeUint32(&aData[8+4*iLeaf]); in openTransaction()
/sqlite-3.40.0/ext/lsm1/
H A Dlsm_tree.c2070 const int iLeaf = pRoot->nHeight-1; in lsmTreeCursorNext() local
2097 if( pCsr->iNode<iLeaf && getChildPtr(pNode, pRoot->iTransId, iCell) ){ in lsmTreeCursorNext()
2105 }while( pCsr->iNode < iLeaf ); in lsmTreeCursorNext()
2136 const int iLeaf = pRoot->nHeight-1; in lsmTreeCursorPrev() local
2162 if( pCsr->iNode<iLeaf && getChildPtr(pNode, pRoot->iTransId, iCell) ){ in lsmTreeCursorPrev()
2170 iCell = 1 + (pNode->aiKeyPtr[2]!=0) + (pCsr->iNode < iLeaf); in lsmTreeCursorPrev()
2172 }while( pCsr->iNode < iLeaf ); in lsmTreeCursorPrev()
H A Dlsm_sorted.c845 LsmPgno iLeaf; /* Page number of current leaf page */ in btreeCursorRestore() local
850 iLeaf = p->iPg; in btreeCursorRestore()
864 rc = lsmFsDbPageGet(pCsr->pFS, pSeg, iLeaf, pp); in btreeCursorRestore()
941 || lsmFsRedirectPage(pCsr->pFS, pSeg->pRedirect, iLoad)==iLeaf in btreeCursorRestore()
/sqlite-3.40.0/ext/misc/
H A Dscrub.c329 u32 iLeaf = scrubBackupInt32(&a[i*4+8]); in scrubBackupFreelist()
335 scrubBackupWrite(p, iLeaf, aZero); in scrubBackupFreelist()
/sqlite-3.40.0/ext/fts5/
H A Dfts5_index.c5821 int iLeaf /* Load doclist-index for this leaf */ in fts5TestDlidxReverse() argument
5827 for(pDlidx=fts5DlidxIterInit(p, 0, iSegid, iLeaf); in fts5TestDlidxReverse()
5833 assert( pgno>iLeaf ); in fts5TestDlidxReverse()
5839 for(pDlidx=fts5DlidxIterInit(p, 1, iSegid, iLeaf); in fts5TestDlidxReverse()
5845 assert( fts5DlidxIterPgno(pDlidx)>iLeaf ); in fts5TestDlidxReverse()
6209 if( p->rc==SQLITE_OK && iter.iLeaf!=pSeg->pgnoLast ){ in fts5IndexIntegrityCheckSegment()
/sqlite-3.40.0/ext/fts3/
H A Dfts3_write.c2169 sqlite3_int64 iLeaf, /* Block id of first leaf node */ in fts3NodeWrite() argument
2179 int nStart = fts3TreeFinishNode(pTree, iHeight, iLeaf); in fts3NodeWrite()
2186 sqlite3_int64 iNextLeaf = iLeaf; in fts3NodeWrite()