Lines Matching refs:Interval
38 Interval chooseInterval(YesNoMaybe choice, const Interval& no, const Interval& yes) in chooseInterval()
48 return Interval(); in chooseInterval()
155 Interval FloatFormat::clampValue (double d) const in clampValue()
168 return Interval(d); in clampValue()
173 Interval FloatFormat::convert (const Interval& x) const in convert()
175 Interval ret; in convert()
176 Interval tmp = x; in convert()
187 tmp = Interval::unbounded(); in convert()
216 Interval FloatFormat::roundOut (const Interval& x, bool roundUnderOverflow) const in roundOut()
218 Interval ret = x.nan(); in roundOut()
221 ret |= Interval(roundOut(x.lo(), false, roundUnderOverflow), in roundOut()
255 std::string FloatFormat::intervalToHex (const Interval& interval) const in intervalToHex()
263 else if (interval == Interval::unbounded(true)) in intervalToHex()