Lines Matching defs:iMax
63576 ** iMax be the value between iKey and iUnused, closest to iUnused,
63577 ** where aHash[iMax]==P. If there is no iMax entry (if there exists
63579 ** current index block. Otherwise the iMax-th mapping entry of the
66722 Pgno iMax = pWal->hdr.mxFrame;
66731 ALWAYS(rc==SQLITE_OK) && iFrame<=iMax;
66748 if( iMax!=pWal->hdr.mxFrame ) walCleanupHash(pWal);
184358 sqlite3_int64 iMax = 0; /* Largest docid for all iterators */
184364 if( a[i].bIgnore==0 && (bMaxSet==0 || DOCID_CMP(iMax, a[i].iDocid)<0) ){
184365 iMax = a[i].iDocid;
184375 && a[i].bIgnore==0 && DOCID_CMP(a[i].iDocid, iMax)<0
184378 if( DOCID_CMP(a[i].iDocid, iMax)>0 ){
184379 iMax = a[i].iDocid;
184406 pDL->iDocid = iMax;
210325 sqlite3_int64 iMax = sqlite3_column_int64(pMax, 0);
210326 zRet = rbuMPrintf(p, " WHERE _rowid_ > %lld ", iMax);
222657 static int sqlite3Fts5ExprNext(Fts5Expr*, i64 iMax);
227092 i64 iMax;
227096 iMax = a[0].reader.iPos;
227101 iMin = iMax - pNear->apPhrase[i]->nTerm - pNear->nNear;
227102 if( pPos->iPos<iMin || pPos->iPos>iMax ){
227107 if( pPos->iPos>iMax ) iMax = pPos->iPos;