Home | History | Annotate | Download | only in dist

Lines Matching defs:nLimit

12966 ** nLimit is set to -1 if there is no LIMIT clause.  nOffset is set to 0.
12967 ** If there is a LIMIT clause, the parser sets nLimit to the value of the
12969 ** offset). But later on, nLimit and nOffset become the memory locations
110905 int nLimit;
110937 && sqlite3ExprIsInteger(pPrior->pLimit, &nLimit)
110938 && nLimit>0 && p->nSelectRow > (u64)nLimit
110940 p->nSelectRow = nLimit;
110952 Expr *pLimit, *pOffset; /* Saved values of p->nLimit and p->nOffset */
148990 i64 nLimit = (nByte*3)/2;
148995 ** such segments are smaller than nLimit bytes in size, they will be
149002 if( nSize<=0 || nSize>nLimit ){