HomeSort by: relevance | last modified time | path
    Searched defs:inex1 (Results 1 - 25 of 62) sorted by relevancy

1 2 3

  /src/external/lgpl3/mpc/dist/src/
cmp_abs.c 30 int inex1, inex2, ret; local
83 inex1 = mpc_norm (n1, z1, MPFR_RNDD);
89 if (inex1 == 0) /* n1 = norm(z1) */
cmp_abs.c 30 int inex1, inex2, ret; local
83 inex1 = mpc_norm (n1, z1, MPFR_RNDD);
89 if (inex1 == 0) /* n1 = norm(z1) */
  /src/external/lgpl3/mpfr/dist/src/
exp10m1.c 110 int inex1; local
115 MPFR_BLOCK (flags, inex1 = mpfr_exp10 (t, x, MPFR_RNDN));
125 if (inex1 == 0)
144 /* if inex1=0, this means that t=o(10^x) is exact, thus the correct
146 if (inex1 == 0 ||
exp2m1.c 115 int inex1; local
120 MPFR_BLOCK (flags, inex1 = mpfr_exp2 (t, x, MPFR_RNDN));
130 if (inex1 == 0)
150 /* if inex1=0, this means that t=o(2^x) is exact, thus the correct
152 if (inex1 == 0 ||
exp10m1.c 110 int inex1; local
115 MPFR_BLOCK (flags, inex1 = mpfr_exp10 (t, x, MPFR_RNDN));
125 if (inex1 == 0)
144 /* if inex1=0, this means that t=o(10^x) is exact, thus the correct
146 if (inex1 == 0 ||
exp2m1.c 115 int inex1; local
120 MPFR_BLOCK (flags, inex1 = mpfr_exp2 (t, x, MPFR_RNDN));
130 if (inex1 == 0)
150 /* if inex1=0, this means that t=o(2^x) is exact, thus the correct
152 if (inex1 == 0 ||
grandom.c 35 int inex1, inex2, s1, s2; local
40 inex2 = inex1 = 0;
179 inex1 = mpfr_set (rop1, r1, rnd);
185 inex1 = mpfr_check_range (rop1, inex1, rnd);
201 return INEX (inex1, inex2);
grandom.c 35 int inex1, inex2, s1, s2; local
40 inex2 = inex1 = 0;
179 inex1 = mpfr_set (rop1, r1, rnd);
185 inex1 = mpfr_check_range (rop1, inex1, rnd);
201 return INEX (inex1, inex2);
  /src/external/lgpl3/mpfr/dist/tests/
tacos.c 32 int inex1, inex2; local
58 inex1 = mpfr_acos (x, x, MPFR_RNDN); /* Pi/2 */
60 if (inex1 != inex2)
tacos.c 32 int inex1, inex2; local
58 inex1 = mpfr_acos (x, x, MPFR_RNDN); /* Pi/2 */
60 if (inex1 != inex2)
tfactorial.c 76 int inex1, inex2; local
95 inex1 = mpfr_fac_ui (x, n, (mpfr_rnd_t) r);
103 if ((inex1 < 0 && inex2 >= 0) || (inex1 == 0 && inex2 != 0)
104 || (inex1 > 0 && inex2 <= 0))
108 printf ("Expected %d, got %d\n", inex2, inex1);
tfmod.c 88 int inex0, inex1; local
93 inex1 = slow_fmod (r1, x, y, rnd);
94 if (!mpfr_equal_p (r0, r1) || inex0 != inex1)
95 test_failed (r1, r0, inex1, inex0, x, y, rnd);
tfrexp.c 157 int inex1, inex2; local
170 inex1 = e1 < 0 ?
177 inex1 = mpfr_set (y1, x, (mpfr_rnd_t) r);
179 flags1 = inex1 != 0 ? MPFR_FLAGS_INEXACT : 0;
203 if (! (SAME_SIGN (inex1, inex2) &&
214 printf ("Expected inex ~= %d, got %d\n", inex1, inex2);
thypot.c 140 int inex1, inex2; local
148 inex1 = mpfr_sqrt (z1, z1, MPFR_RNDN);
164 if (! SAME_SIGN (inex1, inex2))
167 ext ? ", extended exponent range" : "", inex1, inex2);
tlog_ui.c 29 int inex1, inex2; local
34 inex1 = mpfr_set_ui (x, n, MPFR_RNDN);
35 MPFR_ASSERTN(inex1 == 0);
36 inex1 = mpfr_log (y, x, MPFR_RNDN);
40 MPFR_ASSERTN(inex1 == inex2);
tzeta.c 210 int inex1, inex2; local
218 inex1 = -1;
226 SAME_SIGN (inex1, inex2) &&
232 printf ("with inex = %d and flags =", inex1);
tfactorial.c 76 int inex1, inex2; local
95 inex1 = mpfr_fac_ui (x, n, (mpfr_rnd_t) r);
103 if ((inex1 < 0 && inex2 >= 0) || (inex1 == 0 && inex2 != 0)
104 || (inex1 > 0 && inex2 <= 0))
108 printf ("Expected %d, got %d\n", inex2, inex1);
tfmod.c 88 int inex0, inex1; local
93 inex1 = slow_fmod (r1, x, y, rnd);
94 if (!mpfr_equal_p (r0, r1) || inex0 != inex1)
95 test_failed (r1, r0, inex1, inex0, x, y, rnd);
tfrexp.c 157 int inex1, inex2; local
170 inex1 = e1 < 0 ?
177 inex1 = mpfr_set (y1, x, (mpfr_rnd_t) r);
179 flags1 = inex1 != 0 ? MPFR_FLAGS_INEXACT : 0;
203 if (! (SAME_SIGN (inex1, inex2) &&
214 printf ("Expected inex ~= %d, got %d\n", inex1, inex2);
thypot.c 140 int inex1, inex2; local
148 inex1 = mpfr_sqrt (z1, z1, MPFR_RNDN);
164 if (! SAME_SIGN (inex1, inex2))
167 ext ? ", extended exponent range" : "", inex1, inex2);
tlog_ui.c 29 int inex1, inex2; local
34 inex1 = mpfr_set_ui (x, n, MPFR_RNDN);
35 MPFR_ASSERTN(inex1 == 0);
36 inex1 = mpfr_log (y, x, MPFR_RNDN);
40 MPFR_ASSERTN(inex1 == inex2);
tzeta.c 210 int inex1, inex2; local
218 inex1 = -1;
226 SAME_SIGN (inex1, inex2) &&
232 printf ("with inex = %d and flags =", inex1);
tcompound.c 249 int inex1, inex2; local
263 inex1 = -1;
270 SAME_SIGN (inex1, inex2) &&
276 printf (" with inex = %d, flags =", inex1);
297 inex1 = 1;
304 SAME_SIGN (inex1, inex2) &&
310 printf (" with inex = %d, flags =", inex1);
333 int inex1, inex2; local
339 inex1 = 1;
345 SAME_SIGN (inex1, inex2) &
    [all...]
tfrac.c 33 int inex1, inex2; local
56 inex1 = mpfr_frac (dst, sum, rnd);
58 if (inex1 != inex2)
62 printf ("\nGot %d instead of %d\n", inex1, inex2);
82 inex1 = mpfr_frac (sum, sum, rnd);
83 if (inex1)
tget_set_d128.c 125 int inex1, inex2; local
130 inex1 = mpfr_set_si (x1, (neg >> 1) ? -i : i, MPFR_RNDN);
131 MPFR_ASSERTN (inex1 == 0);
136 inex1 = mpfr_exp10 (x1, x1, rx1);
144 inex1 = -inex1;
153 SAME_SIGN (inex1, inex2) &&
160 printf ("with inex = %d and flags =", inex1);

Completed in 53 milliseconds

1 2 3