Lines Matching defs:result
199 msg << "Match value not within tolerance value of MPFR result:\n"
204 msg << '\n' << " MPFR result: " << mpfr_result.str() << '\n';
281 tlog << "MPFR integral result: " << mpfrIntResult << '\n'
282 << "Libc integral result: " << libc_result.i << '\n';
284 tlog << "Integral result from libc matches integral result from MPFR.\n";
289 << "Libc floating point result is not within tolerance value of the MPFR "
290 << "result.\n\n";
299 tlog << " MPFR result: " << mpfr_result.str() << '\n';
329 << "MPFR integral result: " << mpfrIntResult << '\n'
330 << "Libc integral result: " << libc_result.i << '\n'
331 << "Libc floating point result: " << mpfrMatchValue.str() << '\n'
332 << " MPFR result: " << mpfr_result.str() << '\n';
333 tlog << "Libc floating point result bits: " << str(FPBits<T>(libc_result.f))
368 tlog << "Libc result: " << mpfrMatchValue.str() << '\n'
369 << "MPFR result: " << mpfr_result.str() << '\n';
370 tlog << "Libc floating point result bits: "
426 tlog << "Libc result: " << mpfrMatchValue.str() << '\n'
427 << "MPFR result: " << mpfr_result.str() << '\n';
428 tlog << "Libc floating point result bits: "
679 template <typename T> bool round_to_long(T x, long &result) {
681 return mpfr.round_to_long(result);
696 template <typename T> bool round_to_long(T x, RoundingMode mode, long &result) {
698 return mpfr.round_to_long(get_mpfr_rounding_mode(mode), result);
715 MPFRNumber result = mpfr.rint(get_mpfr_rounding_mode(mode));
716 return result.as<T>();