Lines Matching defs:iUpper
158137 tRowcnt iUpper, iGap;
158139 iUpper = pIdx->nRowEst0;
158141 iUpper = aSample[i].anLt[iCol];
158144 if( iLower>=iUpper ){
158147 iGap = iUpper - iLower;
158387 ** Similarly, iUpper is to be set to the estimate of the number of rows
158390 ** of iUpper are requested of whereKeyStats() and the smaller used.
158392 ** The number of rows between the two bounds is then just iUpper-iLower.
158395 tRowcnt iUpper; /* Rows less than the upper bound */
158403 /* Determine iLower and iUpper using ($P) only. */
158406 iUpper = p->nRowEst0;
158412 iUpper = a[0] + a[1];
158441 /* If possible, improve on the iUpper estimate using ($P:$U). */
158452 if( iNew<iUpper ) iUpper = iNew;
158460 if( iUpper>iLower ){
158461 nNew = sqlite3LogEst(iUpper - iLower);
158462 /* TUNING: If both iUpper and iLower are derived from the same
158474 (u32)iLower, (u32)iUpper, nOut));