Searched defs:expt (Results 1 - 7 of 7) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
H A De_asinl.c38 int16_t expsign, expt; local
41 expt = expsign & 0x7fff;
42 if(expt >= BIAS) { /* |x|>= 1 */
43 if(expt==BIAS && ((u.bits.manh&~LDBL_NBIT)|u.bits.manl)==0)
47 } else if (expt<BIAS-1) { /* |x|<0.5 */
48 if(expt<ASIN_LINEAR) { /* if |x| is small, asinl(x)=x */
H A Dk_exp.c40 * returned separately in 'expt'.
46 __frexp_exp(double x, int *expt) argument
59 *expt = (hx >> 20) - (0x3ff + 1023) + k;
65 * __ldexp_exp(x, expt) and __ldexp_cexp(x, expt) compute exp(x) * 2**expt.
70 * exponential functions. We assume expt is small (0 or -1), and the caller
75 __ldexp_exp(double x, int expt) argument
81 expt += ex_expt;
82 INSERT_WORDS(scale, (0x3ff + expt) << 2
87 __ldexp_cexp(double complex z, int expt) argument
[all...]
H A Dk_expf.c45 __frexp_expf(float x, int *expt) argument
52 *expt = (hx >> 23) - (0x7f + 127) + k;
58 __ldexp_expf(float x, int expt) argument
64 expt += ex_expt;
65 SET_FLOAT_WORD(scale, (0x7f + expt) << 23);
70 __ldexp_cexpf(float complex z, int expt) argument
78 expt += ex_expt;
80 half_expt = expt / 2;
82 half_expt = expt - half_expt;
H A Ds_atanl.c38 int16_t expsign, expt; local
43 expt = expsign & 0x7fff;
44 if(expt >= ATAN_CONST) { /* if |x| is large, atan(x)~=pi/2 */
45 if(expt == BIAS + LDBL_MAX_EXP &&
53 expman = (expt << 8) | ((u.bits.manh >> (MANH_SIZE - 9)) & 0xff);
55 if (expt < ATAN_LINEAR) { /* if |x| is small, atanl(x)~=x */
H A De_acosl.c48 int16_t expsign, expt; local
51 expt = expsign & 0x7fff;
52 if(expt >= BIAS) { /* |x| >= 1 */
53 if(expt==BIAS && ((u.bits.manh&~LDBL_NBIT)|u.bits.manl)==0) {
59 if(expt<BIAS-1) { /* |x| < 0.5 */
60 if(expt<ACOS_CONST) return pio2_hi+pio2_lo;/*x tiny: acosl=pi/2*/
/bionic/libc/upstream-openbsd/lib/libc/stdio/
H A Dvfprintf.c308 int expt; /* integer value of exponent */ local
689 &expt, &signflag, &dtoaend);
698 &expt, &signflag, &dtoaend);
706 if (expt == INT_MAX)
735 &expt, &signflag, &dtoaend);
744 &expt, &signflag, &dtoaend);
749 if (expt == 9999)
750 expt = INT_MAX;
755 if (expt == INT_MAX) { /* inf or nan */
768 if (expt >
[all...]
H A Dvfwprintf.c311 int expt; /* integer value of exponent */ local
651 &expt, &signflag, &dtoaend);
660 &expt, &signflag, &dtoaend);
668 if (expt == INT_MAX)
705 &expt, &signflag, &dtoaend);
714 &expt, &signflag, &dtoaend);
719 if (expt == 9999)
720 expt = INT_MAX;
733 if (expt == INT_MAX) { /* inf or nan */
745 if (expt >
[all...]

Completed in 359 milliseconds