Lines Matching refs:inex
33 int inex;
39 inex = mpfr_log10p1 (x, x, MPFR_RNDN);
40 MPFR_ASSERTN (mpfr_nan_p (x) && inex == 0);
45 inex = mpfr_log10p1 (x, x, MPFR_RNDN);
46 MPFR_ASSERTN (mpfr_nan_p (x) && inex == 0);
51 inex = mpfr_log10p1 (x, x, MPFR_RNDN);
52 MPFR_ASSERTN (mpfr_inf_p (x) && mpfr_sgn (x) > 0 && inex == 0);
57 inex = mpfr_log10p1 (x, x, MPFR_RNDN);
58 MPFR_ASSERTN (mpfr_cmp_ui (x, 0) == 0 && MPFR_IS_POS (x) && inex == 0);
62 inex = mpfr_log10p1 (x, x, MPFR_RNDN);
63 MPFR_ASSERTN (mpfr_cmp_ui (x, 0) == 0 && MPFR_IS_NEG (x) && inex == 0);
68 inex = mpfr_log10p1 (x, x, MPFR_RNDN);
69 MPFR_ASSERTN (mpfr_inf_p (x) && mpfr_sgn (x) < 0 && inex == 0);
74 inex = mpfr_log10p1 (x, x, MPFR_RNDN);
75 MPFR_ASSERTN (mpfr_nan_p (x) && inex == 0);
81 inex = mpfr_log10p1 (x, x, MPFR_RNDN);
83 MPFR_ASSERTN (inex < 0);
94 int inex, r;
101 inex = mpfr_ui_pow_ui (x, 10, k, (mpfr_rnd_t) r);
102 MPFR_ASSERTN(inex == 0);
103 inex = mpfr_sub_ui (x, x, 1, (mpfr_rnd_t) r);
104 MPFR_ASSERTN(inex == 0);
105 inex = mpfr_log10p1 (x, x, (mpfr_rnd_t) r);
107 MPFR_ASSERTN(inex == 0);