Lines Matching refs:nOvfl
44558 a[8] = 0; /* Used to be pPager->nOvfl */
53295 int nOvfl = (pCur->info.nPayload-pCur->info.nLocal+ovflSize-1)/ovflSize;
53296 pCur->aOverflow = (Pgno *)sqlite3MallocZero(sizeof(Pgno)*nOvfl);
53297 /* nOvfl is always positive. If it were zero, fetchPayload would have
53299 if( ALWAYS(nOvfl) && !pCur->aOverflow ){
54636 int nOvfl;
54650 nOvfl = (info.nPayload - info.nLocal + ovflPageSize - 1)/ovflPageSize;
54651 assert( ovflPgno==0 || nOvfl>0 );
54652 while( nOvfl-- ){
54661 if( nOvfl ){
120752 int nOvfl; /* Number of overflow pages to load doclist */
120782 *pRc = sqlite3Fts3MsrOvfl(pCsr, pTC->pToken->pSegcsr, &pTC->nOvfl);
120888 int nOvfl = 0; /* Total overflow pages used by doclists */
120908 nOvfl += aTC[ii].nOvfl;
120912 if( nOvfl==0 || nToken<2 ) return SQLITE_OK;
120948 && (!pTC || aTC[iTC].nOvfl<pTC->nOvfl)
120955 if( ii && pTC->nOvfl>=((nMinEst+(nLoad4/4)-1)/(nLoad4/4))*nDocSize ){
126529 int nOvfl = 0;
126548 nOvfl += (nBlob + 34)/pgsz;
126553 *pnOvfl = nOvfl;