Searched refs:fabsl (Results 1 – 25 of 30) sorted by relevance
12
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | s_csqrtl.c | 82 return (CMPLXL(fabsl(b - b), copysignl(a, b))); in csqrtl() 92 if (fabsl(a) >= THRESH || fabsl(b) >= THRESH) { in csqrtl() 98 if (fabsl(a) >= 0x1p-16380L) in csqrtl() 100 if (fabsl(b) >= 0x1p-16380L) in csqrtl() 108 if (fabsl(a) < 0x1p-16382L && fabsl(b) < 0x1p-16382L) { in csqrtl() 121 rx = scale * fabsl(b) / (2 * t); in csqrtl()
|
D | catrigl.c | 53 #define isinf(x) (fabsl(x) == INFINITY) 125 } else if (x >= LDBL_EPSILON * fabsl(y - 1)) { in do_hard_work() 153 } else if (x >= LDBL_EPSILON * fabsl(y - 1)) { in do_hard_work() 175 ax = fabsl(x); in casinhl() 176 ay = fabsl(y); in casinhl() 234 ax = fabsl(x); in cacosl() 235 ay = fabsl(y); in cacosl() 249 rx = fabsl(cimagl(w)); in cacosl() 293 return (CMPLXL(fabsl(ry), rx)); in cacoshl() 296 return (CMPLXL(fabsl(ry), copysignl(rx, cimagl(z)))); in cacoshl() [all …]
|
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 | 122 k_hexpl(fabsl(x), &hi, &lo); in coshl() 127 if (fabsl(x) <= o_threshold) in coshl() 128 RETURNI(hexpl(fabsl(x))); in coshl()
|
D | e_sinhl.c | 124 k_hexpl(fabsl(x), &hi, &lo); in sinhl() 129 if (fabsl(x) <= o_threshold) in sinhl() 130 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.0L)-fabsl(y+0); in hypotl()
|
D | s_tanhl.c | 133 if (ix < 0x4004 || fabsl(x) < 40) { /* |x|<40 */ in tanhl() 162 k_hexpl(2*fabsl(x), &hi, &lo); in tanhl() 163 if (ix<0x4001 && fabsl(x) < 1.5) /* |x|<1.5 */ in tanhl()
|
D | s_fabsl.c | 38 fabsl(long double x) in fabsl() function
|
D | s_clogl.c | 74 ax = fabsl(x); in clogl() 75 ay = fabsl(y); in clogl()
|
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_hypotf.c | 40 w = fabsl(x+0.0L)-fabsf(y+0); in hypotf()
|
D | e_atan2l.c | 112 else z=atanl(fabsl(y/x)); /* safe to do y/x */ in atan2l()
|
D | e_hypot.c | 73 w = fabsl(x+0.0L)-fabs(y+0); in hypot()
|
D | s_remquol.c | 157 y = fabsl(y); in remquol()
|
D | math_private.h | 420 assert(__ia == 0 || fabsl(__ia) >= fabsl(__ib)); \
|
/bionic/libm/upstream-netbsd/lib/libm/complex/ |
D | cephes_subrl.c | 44 if (fabsl(x) <= 0.5L) { in _cchshl() 95 x = fabsl(2.0L * creall(z)); in _ctansl() 96 y = fabsl(2.0L * cimagl(z)); in _ctansl() 127 } while (fabsl(t/d) > MACHEPL); in _ctansl()
|
D | ctanl.c | 48 if (fabsl(d) < 0.25L) in ctanl()
|
/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 | 244 (0x1p200 * x + fabsl(x)) * 0x1p-200); in expm1l()
|
D | e_powl.c | 239 ax = fabsl (x); in powl()
|
/bionic/libm/ |
D | builtins.cpp | 23 long double fabsl(long double x) { return __builtin_fabsl(x); } in fabsl() function
|
12