| /src/external/lgpl3/mpfr/dist/tests/ |
| tcmp_d.c | 30 mpfr_exp_t emin; local 33 emin = mpfr_get_emin (); 82 set_emin (emin);
|
| tcmp_ld.c | 32 mpfr_exp_t emin; local 35 emin = mpfr_get_emin (); 84 set_emin (emin);
|
| trndna.c | 149 mpfr_exp_t emin; local 153 /* mpfr_round_nearest_away requires emin is not the smallest possible */ 154 if ((emin = mpfr_get_emin ()) == mpfr_get_emin_min ()) 161 set_emin (emin);
|
| tset_exp.c | 30 mpfr_exp_t emin, emax, e; local 35 emin = mpfr_get_emin (); 54 ret = mpfr_set_exp (x, emin); 56 MPFR_ASSERTN (e == emin); 58 MPFR_ASSERTN (e == emin); 63 MPFR_ASSERTN (e == emin); 65 MPFR_ASSERTN (e == emin); 75 MPFR_ASSERTN (e == emin); 93 set_emin (emin);
|
| tacos.c | 74 mpfr_exp_t emin, emax; local 76 emin = mpfr_get_emin (); 94 set_emin (emin);
|
| tasinu.c | 33 mpfr_exp_t emin = mpfr_get_emin (); local 50 set_emin (emin);
|
| tatanu.c | 33 mpfr_exp_t emin = mpfr_get_emin (); local 50 set_emin (emin);
|
| tcosh.c | 141 mpfr_exp_t emin, emax; local 143 emin = mpfr_get_emin (); 170 set_emin (emin);
|
| tdigamma.c | 62 mpfr_exp_t emin, emax; local 65 emin = mpfr_get_emin (); 89 set_emin (emin);
|
| tj1.c | 36 mpfr_exp_t e, emin; local 40 emin = mpfr_get_emin (); 63 /* here |y| should be 0.5*2^emin and the inexact flag should 70 set_emin (emin);
|
| tset_z.c | 77 mpfr_exp_t emax, emin; local 106 emin = mpfr_get_emin (); 114 set_emin (emin);
|
| ttanh.c | 62 mpfr_exp_t emin, emax; local 64 emin = mpfr_get_emin (); 93 set_emin (emin);
|
| tai.c | 97 mpfr_exp_t emin; local 105 emin = mpfr_get_emin (); 130 set_emin (emin);
|
| /src/external/lgpl3/mpc/dist/tests/ |
| tnorm.c | 26 mpfr_exp_t emin = mpfr_get_emin (); local 31 mpfr_set_emin (-1); /* smallest positive number is 0.5*2^emin = 0.25 */ 93 mpfr_set_emin (emin);
|
| tsqrt.c | 35 mpfr_exp_t emin = mpfr_get_emin (); local 60 mpfr_set_emin (emin);
|
| tacos.c | 35 mpfr_exp_t emin = mpfr_get_emin (); local 59 mpfr_set_emin (emin); 67 mpfr_exp_t emin = mpfr_get_emin (); local 91 mpfr_set_emin (emin);
|
| tdiv.c | 37 mpfr_exp_t emin = mpfr_get_emin (); local 67 mpfr_set_emin (emin);
|
| ttan.c | 204 mpfr_exp_t emin = mpfr_get_emin (); local 228 mpfr_set_emin (emin);
|
| /src/external/lgpl3/mpfr/dist/src/ |
| beta.c | 31 mpfr_exp_t emin, emax; local 224 emin = MIN (MPFR_EXP(z) - MPFR_PREC(z), MPFR_EXP(w) - MPFR_PREC(w)); 225 MPFR_ASSERTD (emax >= emin); 226 /* Thus the math value of emax - emin is representable in mpfr_uexp_t. */ 227 pmin = (mpfr_uexp_t) emax - emin;
|
| erfc.c | 107 is nearer from 0 than from 2^(-emin-1), 130 mpfr_exp_t emin = mpfr_get_emin (); local 154 /* by default, emin = 1-2^30, thus the smallest representable 155 number is 1/2*2^emin = 2^(-2^30): 159 if ((emin >= -1073741823 && mpfr_cmp_ui (x, 27282) >= 0) ||
|
| exp.c | 25 /* Cache for emin and emax bounds. 94 /* mpfr_cmp works even in reduced emin,emax range */ 101 /* emin bound is cached. Check if the value in cache is ok */ 126 /* x < log(2^(emin - 2)), thus exp(x) < 2^(emin - 2) */ 137 mpfr_exp_t emin = __gmpfr_emin; local 168 __gmpfr_emin = emin;
|
| get_float128.c | 41 const int emin = -16381; local 42 const int esub = emin - IEEE_FLOAT128_MANT_DIG; 69 prec = e < emin ? e - esub : IEEE_FLOAT128_MANT_DIG;
|
| /src/external/lgpl3/mpc/dist/src/ |
| norm.c | 109 mpfr_exp_t emin = mpfr_get_emin (); local 113 In the latter case, Im(b)^2 < 2^(emin-1). 114 If ulp(u) >= 2^(emin+1) and norm(b) is not exactly 116 is equivalent to rounding u+2^(emin-1). 118 than about |emin|, the norm is not representable. To make the 123 && mpfr_get_exp (u) - 2 * (mpfr_exp_t) prec_u > emin 126 mpfr_set_ui_2exp (v, 1, emin - 1, MPFR_RNDZ); 130 && mpfr_get_exp (v) - 2 * (mpfr_exp_t) prec_v > emin 133 mpfr_set_ui_2exp (u, 1, emin - 1, MPFR_RNDZ);
|
| /src/external/lgpl3/mpc/dist/tools/mpcheck/ |
| mpcheck-float.c | 72 mpfr_exp_t emin, emax; variable 195 emin = -EMAX - PRECISION + 4; /* should be -148 */ 197 mpfr_set_emin (emin);
|
| mpcheck-longdouble.c | 60 mpfr_exp_t emin, emax; variable 183 emin = -EMAX - PRECISION + 4; /* should be -16444 */ 185 mpfr_set_emin (emin);
|