Home | History | Annotate | Download | only in common

Lines Matching defs:round

139 //! significand bits and minimum exponent of the floatformat. Round up if
141 double FloatFormat::round (double d, bool upward) const
190 // Round both bounds _inwards_ to closest representable values.
192 ret |= clampValue(round(tmp.lo(), true)) | clampValue(round(tmp.hi(), false));
210 return round(d, upward);
213 //! Round output of an operation.
343 oss << "round(" << arg << ", false)";
344 check(oss.str(), m_fmt->round(arg, false), refDown);
348 oss << "round(" << arg << ", true)";
349 check(oss.str(), m_fmt->round(arg, true), refUp);