Home | History | Annotate | Download | only in hwc

Lines Matching refs:lower

184     Range(uint32_t lower, uint32_t upper) : _l(lower), _u(upper) {}
185 uint32_t lower(void) { return _l; }
191 uint32_t _l; // lower
219 Rational& lower, Rational& upper);
1094 // just below and above the mid-point. By default the lower rational
1097 // to the lower value. This only occurs when the lower value has already
1122 Rational lower, upper, selected;
1133 lower, upper);
1134 if (((lower == best) && (upper == minBad))) {
1138 // Use lower value unless its already been tried
1139 selected = (lower != best) ? lower : upper;
1169 // Update the lower bound of the binary search
1193 // just below and above the mid-point. By default the lower rational
1196 // to the lower value. This only occurs when the lower value has already
1221 Rational lower, upper, selected;
1232 lower, upper);
1233 if (((lower == best) && (upper == minBad))) {
1237 // Use lower value unless its already been tried
1238 selected = (lower != best) ? lower : upper;
1268 // Update the lower bound of the binary search
1366 Rational& lower, Rational& upper)
1368 Rational bestLower(nRange.lower(), dRange.upper());
1369 Rational bestUpper(nRange.upper(), dRange.lower());
1372 for (uint32_t d = dRange.lower(); d <= dRange.upper(); d++) {
1373 Rational val(d * f, d); // Lower, because double to int cast truncates
1375 if ((val.numerator() < nRange.lower())
1390 lower = bestLower;