HomeSort by: relevance | last modified time | path
    Searched refs:mpfr_set (Results 1 - 25 of 200) sorted by relevancy

1 2 3 4 5 6 7 8

  /src/external/lgpl3/mpfr/dist/src/
minmax.c 43 return mpfr_set(z, y, rnd_mode);
45 return mpfr_set(z, x, rnd_mode);
49 return mpfr_set(z, x, rnd_mode);
51 return mpfr_set(z, y, rnd_mode);
55 return mpfr_set(z, x, rnd_mode);
57 return mpfr_set(z, y, rnd_mode);
77 return mpfr_set(z, y, rnd_mode);
79 return mpfr_set(z, x, rnd_mode);
83 return mpfr_set(z, y, rnd_mode);
85 return mpfr_set(z, x, rnd_mode)
    [all...]
mul_2ui.c 36 inexact = (y != x) ? mpfr_set (y, x, rnd_mode) : 0;
rndna.c 107 the mpfr_set just below, but this is cleaner in case internals would
112 MPFR_DBGRES (inexact = mpfr_set(tmp, rop, MPFR_RNDN));
169 mpfr_set (rop, tmp, MPFR_RNDN); /* inex unchanged */
178 mpfr_set (rop, tmp, MPFR_RNDN); /* exact, inex unchanged */
180 inex = mpfr_set (rop, tmp, MPFR_RNDA);
182 inex = mpfr_set (rop, tmp, (inex > 0) ? MPFR_RNDD : MPFR_RNDU);
rint.c 358 return mpfr_set (r, u, rnd_mode);
372 : mpfr_set (r, tmp, rnd_mode));
384 return mpfr_set (r, u, rnd_mode);
398 : mpfr_set (r, tmp, rnd_mode));
410 return mpfr_set (r, u, rnd_mode);
421 inex = mpfr_set (r, tmp, rnd_mode);
433 return mpfr_set (r, u, rnd_mode);
447 : mpfr_set (r, tmp, rnd_mode));
459 return mpfr_set (r, u, rnd_mode);
473 : mpfr_set (r, tmp, rnd_mode))
    [all...]
div_2ui.c 36 return mpfr_set (y, x, rnd_mode);
fits_s.h 88 mpfr_set (x, f, (rnd == MPFR_RNDF) ? MPFR_RNDA : rnd);
fits_u.h 69 mpfr_set (x, f, (rnd != MPFR_RNDF) ? rnd : MPFR_RNDU);
gammaonethird.c 57 mpfr_set (y, x, mode);
70 mpfr_set (y, x, mode);
83 mpfr_set (y, x, mode);
111 mpfr_set (s, uk, MPFR_RNDN);
reldiff.c 57 mpfr_set (b_copy, b, MPFR_RNDN);
  /src/external/lgpl3/mpc/dist/src/
imag.c 26 return mpfr_set (a, mpc_imagref (b), rnd);
real.c 26 return mpfr_set (a, mpc_realref (b), rnd);
set.c 28 inex_re = mpfr_set (mpc_realref(a), mpc_realref(b), MPC_RND_RE(rnd));
29 inex_im = mpfr_set (mpc_imagref(a), mpc_imagref(b), MPC_RND_IM(rnd));
mul_i.c 38 mpfr_set (mpc_realref (a), mpc_imagref (b), MPFR_RNDN);
39 mpfr_set (mpc_imagref (a), mpc_realref (b), MPFR_RNDN);
56 inex_im = mpfr_set (mpc_imagref (a), mpc_realref (b), MPC_RND_IM (rnd));
60 inex_re = mpfr_set (tmp, mpc_imagref (b), MPC_RND_RE (rnd));
70 inex_im = mpfr_set (mpc_imagref (a), mpc_realref (b), MPC_RND_IM (rnd));
74 inex_re = mpfr_set (mpc_realref (a), mpc_imagref (b), MPC_RND_RE (rnd));
add_fr.c 30 inex_im = mpfr_set (mpc_imagref(a), mpc_imagref(b), MPC_RND_IM(rnd));
add_si.c 29 inex_im = mpfr_set (mpc_imagref (rop), mpc_imagref (op1), MPC_RND_IM (rnd));
add_ui.c 30 inex_im = mpfr_set (mpc_imagref(a), mpc_imagref(b), MPC_RND_IM(rnd));
conj.c 28 inex_re = mpfr_set (mpc_realref(a), mpc_realref(b), MPC_RND_RE(rnd));
sub_fr.c 31 inex_im = mpfr_set (mpc_imagref(a), mpc_imagref(b), MPC_RND_IM(rnd));
sub_ui.c 30 inex_im = mpfr_set (mpc_imagref(a), mpc_imagref(b), MPC_RND_IM(rnd));
div_fr.c 34 mpfr_set (mpc_realref (a), real, MPFR_RNDN);
mul_fr.c 37 mpfr_set (mpc_realref (a), real, MPFR_RNDN); /* exact */
  /src/external/lgpl3/mpfr/dist/tests/
tai.c 169 mpfr_set (xx, x, MPFR_RNDN);
176 mpfr_set (x, xx, MPFR_RNDN);
177 mpfr_set (y, yy, MPFR_RNDN);
182 mpfr_set (xx, x, MPFR_RNDN);
189 mpfr_set (x, xx, MPFR_RNDN);
190 mpfr_set (y, yy, MPFR_RNDN);
ttrunc.c 79 mpfr_set(y2, x, MPFR_RNDD);
82 mpfr_set(z2, x, MPFR_RNDZ);
85 mpfr_set(t2, x, MPFR_RNDU);
tset.c 1 /* Test file for mpfr_set.
113 inexact = mpfr_set (y, x, MPFR_RNDN);
115 "ERROR: mpfr_set failed to set variable to +infinity.\n");
127 inexact = mpfr_set (y, x, MPFR_RNDN);
129 "ERROR: mpfr_set failed to set variable to -infinity.\n");
140 inexact = mpfr_set (y, x, MPFR_RNDN);
142 "ERROR: mpfr_set failed to set variable to +0.\n");
150 inexact = mpfr_set (y, x, MPFR_RNDN);
152 "ERROR: mpfr_set failed to set variable to -0.\n");
162 inexact = mpfr_set (y, x, MPFR_RNDN)
    [all...]
  /src/external/lgpl3/mpfr/dist/examples/
can_round.c 54 mpfr_set (y, x, r2);

Completed in 31 milliseconds

1 2 3 4 5 6 7 8