Searched refs:nOvfl (Results 1 – 5 of 5) sorted by relevance
95 int nOvfl; /* Entries in aOvfl[] */ member470 int nOvfl = ((nPayload - nLocal) + nUsable-4 - 1) / (nUsable - 4); in statDecodePage() local474 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()
5007 int nOvfl = (pCur->info.nPayload-pCur->info.nLocal+ovflSize-1)/ovflSize; in accessPayload() local5009 || 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() local6727 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()
627 int nOvfl = 0; in dbdataNext() local629 rc = dbdataLoadPage(pCsr, pgnoOvfl, &aOvfl, &nOvfl); in dbdataNext()630 assert( rc!=SQLITE_OK || aOvfl==0 || nOvfl==pCsr->nPage ); in dbdataNext()
4870 int nOvfl; /* Number of overflow pages to load doclist */ member4900 *pRc = sqlite3Fts3MsrOvfl(pCsr, pTC->pToken->pSegcsr, &pTC->nOvfl); in fts3EvalTokenCosts()5006 int nOvfl = 0; /* Total overflow pages used by doclists */ in fts3EvalSelectDeferred() local5026 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()
1568 int nOvfl = 0; in sqlite3Fts3MsrOvfl() local1587 nOvfl += (nBlob + 34)/pgsz; in sqlite3Fts3MsrOvfl()1592 *pnOvfl = nOvfl; in sqlite3Fts3MsrOvfl()