Lines Matching defs:round
141 double FloatFormat::round (double d, bool upward) const
192 ret |= clampValue(round(tmp.lo(), false)) | clampValue(round(tmp.hi(), true));
210 return round(d, upward);
304 double NormalizedFormat::round(double d, bool upward) const
331 return round(d, upward);
379 oss << "round(" << arg << ", false)";
380 check(oss.str(), m_fmt->round(arg, false), refDown);
384 oss << "round(" << arg << ", true)";
385 check(oss.str(), m_fmt->round(arg, true), refUp);