Home
last modified time | relevance | path

Searched refs:nOvfl (Results 1 – 5 of 5) sorted by relevance

/sqlite-3.40.0/src/
H A Ddbstat.c95 int nOvfl; /* Entries in aOvfl[] */ member
470 int nOvfl = ((nPayload - nLocal) + nUsable-4 - 1) / (nUsable - 4); in statDecodePage() local
474 pCell->nLastOvfl = (nPayload-nLocal) - (nOvfl-1) * (nUsable-4); in statDecodePage()
475 pCell->nOvfl = nOvfl; in statDecodePage()
476 pCell->aOvfl = sqlite3_malloc64(sizeof(u32)*nOvfl); in statDecodePage()
479 for(j=1; j<nOvfl; j++){ in statDecodePage()
611 while( pCell->iOvfl<pCell->nOvfl ){ in statNext()
619 if( pCell->iOvfl<pCell->nOvfl-1 ){ in statNext()
H A Dbtree.c5007 int nOvfl = (pCur->info.nPayload-pCur->info.nLocal+ovflSize-1)/ovflSize; in accessPayload() local
5009 || nOvfl*(int)sizeof(Pgno) > sqlite3MallocSize(pCur->aOverflow) in accessPayload()
5012 pCur->aOverflow, nOvfl*2*sizeof(Pgno) in accessPayload()
5020 memset(pCur->aOverflow, 0, nOvfl*sizeof(Pgno)); in accessPayload()
6712 int nOvfl; in clearCellOverflow() local
6727 nOvfl = (pInfo->nPayload - pInfo->nLocal + ovflPageSize - 1)/ovflPageSize; in clearCellOverflow()
6728 assert( nOvfl>0 || in clearCellOverflow()
6731 while( nOvfl-- ){ in clearCellOverflow()
6740 if( nOvfl ){ in clearCellOverflow()
/sqlite-3.40.0/ext/recover/
H A Ddbdata.c627 int nOvfl = 0; in dbdataNext() local
629 rc = dbdataLoadPage(pCsr, pgnoOvfl, &aOvfl, &nOvfl); in dbdataNext()
630 assert( rc!=SQLITE_OK || aOvfl==0 || nOvfl==pCsr->nPage ); in dbdataNext()
/sqlite-3.40.0/ext/fts3/
H A Dfts3.c4870 int nOvfl; /* Number of overflow pages to load doclist */ member
4900 *pRc = sqlite3Fts3MsrOvfl(pCsr, pTC->pToken->pSegcsr, &pTC->nOvfl); in fts3EvalTokenCosts()
5006 int nOvfl = 0; /* Total overflow pages used by doclists */ in fts3EvalSelectDeferred() local
5026 nOvfl += aTC[ii].nOvfl; in fts3EvalSelectDeferred()
5030 if( nOvfl==0 || nToken<2 ) return SQLITE_OK; in fts3EvalSelectDeferred()
5066 && (!pTC || aTC[iTC].nOvfl<pTC->nOvfl) in fts3EvalSelectDeferred()
5073 if( ii && pTC->nOvfl>=((nMinEst+(nLoad4/4)-1)/(nLoad4/4))*nDocSize ){ in fts3EvalSelectDeferred()
H A Dfts3_write.c1568 int nOvfl = 0; in sqlite3Fts3MsrOvfl() local
1587 nOvfl += (nBlob + 34)/pgsz; in sqlite3Fts3MsrOvfl()
1592 *pnOvfl = nOvfl; in sqlite3Fts3MsrOvfl()