Home
last modified time | relevance | path

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

/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_csqrtl.c76 return (cpackl(fabsl(b - b), copysignl(a, b))); in csqrtl()
86 if (fabsl(a) >= THRESH || fabsl(b) >= THRESH) { in csqrtl()
100 result = cpackl(fabsl(b) / (2 * t), copysignl(t, b)); in csqrtl()
Ds_asinhl.c82 w = logl(fabsl(x))+ln2; in asinhl()
84 t = fabsl(x); in asinhl()
88 w =log1pl(fabsl(x)+t/(one+sqrtl(one+t))); in asinhl()
Ds_fabsl.c36 fabsl(long double x) in fabsl() function
De_hypotl.c59 a = fabsl(a); in hypotl()
60 b = fabsl(b); in hypotl()
67 w = fabsl(x+0.0)-fabsl(y+0.0); in hypotl()
De_atanhl.c64 RETURNI(fabsl(x) == 1 ? x / zero : (x - x) / (x - x)); in atanhl()
Ds_atanl.c60 x = fabsl(x); in atanl()
De_asinl.c58 w = one-fabsl(x); in asinl()
De_atan2l.c112 else z=atanl(fabsl(y/x)); /* safe to do y/x */ in atan2l()
Ds_remquol.c160 y = fabsl(y); in remquol()
Dmath_private.h365 assert(__ia == 0 || fabsl(__ia) >= fabsl(__ib)); \
/bionic/libm/
Dfake_long_double.c28 long double fabsl(long double a1) { return fabs(a1); } in fabsl() function
/bionic/libm/upstream-freebsd/lib/msun/ld128/
Dk_tanl.c72 if (fabsl(x) >= 0.67434) { in __kernel_tanl()
Ds_expl.c411 (0x1p200 * x + fabsl(x)) * 0x1p-200); in expm1l()
/bionic/libm/include/
Dmath.h420 long double fabsl(long double) __pure2;
/bionic/tests/
Dmath_test.cpp632 TEST(math, fabsl) { in TEST() argument
633 ASSERT_DOUBLE_EQ(1.0L, fabsl(-1.0L)); in TEST()