HomeSort by: relevance | last modified time | path
    Searched defs:inex_t (Results 1 - 3 of 3) sorted by relevancy

  /src/external/lgpl3/mpc/dist/tests/
tfma.c 32 int inex_z, inex_t; local
38 inex_t = mpc_fma (t, a, b, c, rnd);
40 if (mpc_cmp (z, t) != 0 || inex_z != inex_t) {
49 if (inex_z != inex_t) {
51 fprintf (stderr, "inex_re (t): %s\n", MPC_INEX_STR (inex_t));
tmul.c 37 int inex_z, inex_t; local
43 inex_t = mpc_mul_karatsuba (t, x, y, rnd);
45 if (mpc_cmp (z, t) != 0 || inex_z != inex_t) {
53 if (inex_z != inex_t) {
55 fprintf (stderr, "inex_re (t): %s\n", MPC_INEX_STR (inex_t));
  /src/external/lgpl3/mpc/dist/src/
sqrt.c 33 int inex_w, inex_t = 1, inex_re, inex_im, loops = 0; local
156 inex_t = mpfr_sqrt (mpc_imagref (a), y, MPC_RND_IM (rnd));
162 inex_t = -mpfr_sqrt (mpc_imagref (a), y, INV_RND (MPC_RND_IM (rnd)));
165 return MPC_INEX (inex_w, inex_t);
251 inex_t = mpfr_div (t, mpc_imagref (b), w, r);
252 if (!inex_t && inex_w)
254 inex_t = im_sgn ? -1 : 1;
255 inex_t |= mpfr_div_2ui (t, t, 1, r);
270 while ((inex_w && !ok_w) || (inex_t && !ok_t));
325 if (repr_t && inex_t) {
    [all...]

Completed in 24 milliseconds