Home | History | Annotate | Download | only in tests

Lines Matching refs:mpfr_div_ui

1 /* Test file for mpfr_div_ui.
35 mpfr_div_ui (y, x, u, rnd);
38 printf ("mpfr_div_ui failed for x=%s, u=%lu, rnd=%s\n", ds, u,
60 mpfr_div_ui (y, x, 3, MPFR_RNDN);
65 mpfr_div_ui (y, x, 123456, MPFR_RNDN);
67 mpfr_div_ui (y, x, 123456789, MPFR_RNDN);
70 printf ("mpfr_div_ui gives non-zero for 0/ui\n");
78 mpfr_div_ui (y, x, 17, MPFR_RNDN);
96 mpfr_div_ui (y, x, 2, MPFR_RNDN); /* exactly in the middle */
98 (mpfr_div_ui) (y, x, 2, MPFR_RNDN); /* exactly in the middle */
105 mpfr_div_ui (y, x, 2, MPFR_RNDN);
107 (mpfr_div_ui) (y, x, 2, MPFR_RNDN);
114 mpfr_div_ui (y, x, 2, MPFR_RNDD);
116 (mpfr_div_ui) (y, x, 2, MPFR_RNDD);
126 mpfr_div_ui (y, x, 1, MPFR_RNDN);
140 mpfr_div_ui (y, x, 4, MPFR_RNDN);
142 (mpfr_div_ui) (y, x, 4, MPFR_RNDN);
183 inexact = mpfr_div_ui (y, x, u, (mpfr_rnd_t) rnd);
236 mpfr_div_ui (z, x, 36UL << 58, MPFR_RNDN);
244 mpfr_div_ui (z, x, 7UL << 61, MPFR_RNDN);
305 inex = mpfr_div_ui (y, x, u, MPFR_RNDN);
335 inex = mpfr_div_ui (y, x, u, MPFR_RNDN);
351 inex = mpfr_div_ui (y, x, u, MPFR_RNDN);
395 mpfr_div_ui (y, x, u, MPFR_RNDN);
400 mpfr_div_ui (y, x, u, MPFR_RNDN);
406 mpfr_div_ui (y, x, u, MPFR_RNDN);
465 inex2 = mpfr_div_ui (y2, x, j, (mpfr_rnd_t) r);
502 printf ("mpfr_div_ui not tested on case %d, sb=%d\n", i, j);
514 #define TEST_FUNCTION mpfr_div_ui
547 mpfr_div_ui (x, x, 5, MPFR_RNDD);
550 printf ("Error in mpfr_div_ui for x=ln(3), u=5\n");