Lines Matching refs:r
1019 adjust_real (mpfr_t r, bool inexact) in adjust_real() argument
1024 assert (mpfr_number_p (r)); in adjust_real()
1025 if (mpfr_cmpabs (r, global_min) < 0) in adjust_real()
1026 assert_exact (mpfr_copysign (r, global_min, r, MPFR_RNDN)); in adjust_real()
1027 else if (mpfr_cmpabs (r, global_max) > 0) in adjust_real()
1028 assert_exact (mpfr_copysign (r, global_max, r, MPFR_RNDN)); in adjust_real()
1033 mpfr_exp_t e = mpfr_get_z_2exp (tmp, r); in adjust_real()
1042 assert_exact (mpfr_set_z_2exp (r, tmp, e, MPFR_RNDN)); in adjust_real()
1056 mpfr_t r, fp_format format) in round_real()
1058 assert (mpfr_number_p (r)); in round_real()
1063 bool inexact = mpfr_set (res[m], r, rounding_modes[m].mpfr_mode); in round_real()
1093 if (mpfr_cmpabs (r, fp_formats[format].min) < 0) in round_real()
1105 assert_exact (mpfr_mul_2si (tmp, r, (fp_formats[format].mant_dig in round_real()