Home | History | Annotate | Download | only in tests

Lines Matching refs:inex

29   int inex;
36 inex = mpfr_cbrt (y, x, MPFR_RNDN);
42 if (inex != 0)
44 printf ("Error: cbrt(NaN): incorrect ternary value %d\n", inex);
50 inex = mpfr_cbrt (y, x, MPFR_RNDN);
56 if (inex != 0)
58 printf ("Error: cbrt(+Inf): incorrect ternary value %d\n", inex);
64 inex = mpfr_cbrt (y, x, MPFR_RNDN);
70 if (inex != 0)
72 printf ("Error: cbrt(-Inf): incorrect ternary value %d\n", inex);
78 inex = mpfr_cbrt (y, x, MPFR_RNDN);
84 if (inex != 0)
86 printf ("Error: cbrt(+0): incorrect ternary value %d\n", inex);
90 inex = mpfr_cbrt (y, x, MPFR_RNDN);
96 if (inex != 0)
98 printf ("Error: cbrt(-0): incorrect ternary value %d\n", inex);
184 int r, inex;
199 inex = mpfr_cbrt (x, x, (mpfr_rnd_t) r);
200 if (mpfr_cmp_ui (x, 1) || inex != 0)
205 printf ("inex = %d\n", inex);
210 inex = mpfr_cbrt (x, x, (mpfr_rnd_t) r);
211 if (mpfr_cmp_si (x, -1) || inex != 0)
216 printf ("inex = %d\n", inex);
227 inex = mpfr_cbrt (x, x, MPFR_RNDN);
228 if (mpfr_cmp_si_2exp (x, 3, i) || inex != 0)
235 printf ("inex = %d, expected 0\n", inex);