Searched refs:fabsl (Results 1 – 25 of 28) sorted by relevance
12
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | s_csqrtl.c | 76 return (CMPLXL(fabsl(b - b), copysignl(a, b))); in csqrtl() 86 if (fabsl(a) >= THRESH || fabsl(b) >= THRESH) { in csqrtl() 100 result = CMPLXL(fabsl(b) / (2 * t), copysignl(t, b)); in csqrtl()
|
D | s_asinhl.c | 82 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()
|
D | e_coshl.c | 120 k_hexpl(fabsl(x), &hi, &lo); in coshl() 125 if (fabsl(x) <= o_threshold) in coshl() 126 RETURNI(hexpl(fabsl(x))); in coshl()
|
D | s_fabsl.c | 36 fabsl(long double x) in fabsl() function
|
D | e_sinhl.c | 121 k_hexpl(fabsl(x), &hi, &lo); in sinhl() 126 if (fabsl(x) <= o_threshold) in sinhl() 127 RETURNI(s*hexpl(fabsl(x))); in sinhl()
|
D | e_hypotl.c | 59 a = fabsl(a); in hypotl() 60 b = fabsl(b); in hypotl() 67 w = fabsl(x+0.0)-fabsl(y+0.0); in hypotl()
|
D | s_tanhl.c | 131 if (ix < 0x4004 || fabsl(x) < 40) { /* |x|<40 */ in tanhl() 160 k_hexpl(2*fabsl(x), &hi, &lo); in tanhl() 161 if (ix<0x4001 && fabsl(x) < 1.5) /* |x|<1.5 */ in tanhl()
|
D | e_atanhl.c | 64 RETURNI(fabsl(x) == 1 ? x / zero : (x - x) / (x - x)); in atanhl()
|
D | s_atanl.c | 60 x = fabsl(x); in atanl()
|
D | e_asinl.c | 58 w = one-fabsl(x); in asinl()
|
D | e_atan2l.c | 112 else z=atanl(fabsl(y/x)); /* safe to do y/x */ in atan2l()
|
D | s_remquol.c | 160 y = fabsl(y); in remquol()
|
D | math_private.h | 365 assert(__ia == 0 || fabsl(__ia) >= fabsl(__ib)); \
|
/bionic/libm/ |
D | fabs.cpp | 40 long double fabsl(long double x) { return __builtin_fabsl(x); } in fabsl() function 42 long double fabsl(long double x) { in fabsl() function
|
D | libm.arm64.map | 110 fabsl;
|
D | libm.mips64.map | 110 fabsl;
|
D | libm.x86.map | 110 fabsl;
|
D | libm.x86_64.map | 110 fabsl;
|
D | libm.mips.map | 110 fabsl;
|
D | libm.arm.map | 110 fabsl;
|
/bionic/libm/upstream-freebsd/lib/msun/ld128/ |
D | k_tanl.c | 72 if (fabsl(x) >= 0.67434) { in __kernel_tanl()
|
D | e_lgammal_r.c | 244 return -logl(fabsl(x)); in lgammal_r() 254 nadj = logl(pi/fabsl(t*x)); in lgammal_r()
|
D | s_erfl.c | 208 ax = fabsl(x); in erfl() 269 ax = fabsl(x); in erfcl()
|
D | s_expl.c | 243 (0x1p200 * x + fabsl(x)) * 0x1p-200); in expm1l()
|
/bionic/libm/include/ |
D | math.h | 376 long double fabsl(long double) __pure2; 377 __BIONIC_MATH_INLINE(long double fabsl(long double x) { return __builtin_fabsl(x); })
|
12