Home
last modified time | relevance | path

Searched refs:RETURNI (Results 1 – 15 of 15) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
De_acoshl.c74 RETURNI((x-x)/(x-x)); in acoshl()
77 RETURNI(x+x); in acoshl()
79 RETURNI(logl(x)+ln2); /* acosh(huge)=log(2x), or misnormal */ in acoshl()
81 RETURNI(0.0); /* acosh(1) = 0 */ in acoshl()
84 RETURNI(logl(2.0*x-one/(x+sqrtl(t-one)))); in acoshl()
87 RETURNI(log1pl(t+sqrtl(2.0*t+t*t))); in acoshl()
Ds_clogl.c89 RETURNI(CMPLXL(logl(hypotl(x, y)), v)); in clogl()
94 RETURNI(CMPLXL((ay / 2) * ay, v)); in clogl()
95 RETURNI(CMPLXL(log1pl(ay * ay) / 2, v)); in clogl()
100 RETURNI(CMPLXL(logl(ax), v)); in clogl()
104 RETURNI(CMPLXL(logl(hypotl(x * 0x1p-16382L, y * 0x1p-16382L)) + in clogl()
107 RETURNI(CMPLXL(logl(hypotl(x, y)), v)); in clogl()
111 RETURNI(CMPLXL(logl(hypotl(x * 0x1p16383L, y * 0x1p16383L)) + in clogl()
116 RETURNI(CMPLXL(logl(hypotl(x, y)), v)); in clogl()
158 RETURNI(CMPLXL(logl(ay2l + ax2l + sl + sh) / 2, v)); in clogl()
167 RETURNI(CMPLXL(log1pl(ay2l + t + sh) / 2, v)); in clogl()
De_coshl.c105 RETURNI(1+tiny); /* cosh(tiny) = 1(+) with inexact */ in coshl()
109 RETURNI(((C16*x2 + C14)*x4 + (C12*x2 + C10))*(x4*x4*x2) + in coshl()
113 RETURNI((((((((((((C26*dx2 + C24)*dx2 + C22)*dx2 + in coshl()
123 RETURNI(lo + 0.25/(hi + lo) + hi); in coshl()
128 RETURNI(hexpl(fabsl(x))); in coshl()
131 RETURNI(huge*huge); in coshl()
De_sinhl.c108 if(shuge+x>1) RETURNI(x); /* sinh(tiny) = tiny with inexact */ in sinhl()
113 RETURNI(((S17*x2 + S15)*x4 + (S13*x2 + S11))*(x2*x*x4*x4) + in sinhl()
117 RETURNI(((((((((((S25*dx2 + S23)*dx2 + in sinhl()
125 RETURNI(s*(lo - 0.25/(hi + lo) + hi)); in sinhl()
130 RETURNI(s*hexpl(fabsl(x))); in sinhl()
De_atanhl.c64 RETURNI(fabsl(x) == 1 ? x / zero : (x - x) / (x - x)); in atanhl()
66 RETURNI(x); /* x is tiny */ in atanhl()
73 RETURNI((hx & 0x8000) == 0 ? t : -t); in atanhl()
Ds_asinhl.c77 if (ix >= 0x7fff) RETURNI(x+x); /* x is inf, NaN or misnormal */ in asinhl()
79 if (huge + x > one) RETURNI(x); /* return x inexact except 0 */ in asinhl()
90 RETURNI((hx & 0x8000) == 0 ? w : -w); in asinhl()
Ds_roundl.c57 RETURNI(t); in roundl()
62 RETURNI(-t); in roundl()
Ds_cosl.c75 RETURNI(__kernel_cosl(z.e, 0)); in cosl()
96 RETURNI(hi); in cosl()
Ds_tanl.c78 RETURNI(s ? -hi : hi); in tanl()
96 RETURNI(hi); in tanl()
Ds_sinl.c72 RETURNI(s ? -hi : hi); in sinl()
94 RETURNI(hi); in sinl()
Ds_tanhl.c142 RETURNI(((T19*x2 + T17)*x4 + (T15*x2 + T13))*(x2*x*x2*x4*x4) + in tanhl()
148 RETURNI(((((((((((((((T33*dx2 + T31)*dx2 + T29)*dx2 + T27)*dx2 + in tanhl()
158 RETURNI(q + T3*(x2*x) + x); in tanhl()
173 RETURNI(s*z); in tanhl()
Ds_cbrtl.c60 RETURNI(x); in cbrtl()
142 RETURNI(t); in cbrtl()
Dmath_private.h345 #define RETURNI(x) do { \ macro
364 #define RETURNI(x) RETURNF(x) macro
795 RETURNI(x); \
803 RETURNI((x) + (y)); \
/bionic/libm/upstream-freebsd/lib/msun/ld128/
Ds_expl.c101 RETURNI(t * 2 * 0x1p16383L); in expl()
103 RETURNI(t * twopk); in expl()
106 RETURNI(t * twopk * twom10000); in expl()
300 RETURNI(t); in expm1l()
305 RETURNI(t / 2); in expm1l()
309 RETURNI(t * twopk - 1); in expm1l()
314 RETURNI(t * 2 * 0x1p16383L - 1); in expm1l()
315 RETURNI(t * twopk - 1); in expm1l()
325 RETURNI(t * twopk); in expm1l()
Ds_logl.c446 #define RETURN2(rp, h, l) RETURNI((h) + (l))