/third_party/musl/src/math/x32/ |
H A D | fabsl.s | 1 .global fabsl 2 .type fabsl,@function 3 fabsl: label
|
/third_party/musl/src/math/x86_64/ |
H A D | fabsl.s | 1 .global fabsl
2 .type fabsl,@function
3 fabsl:
label
|
/third_party/FreeBSD/lib/msun/src/ |
H A D | s_asinhl.c | 80 w = logl(fabsl(x))+ln2; in asinhl() 82 t = fabsl(x); in asinhl() 86 w =log1pl(fabsl(x)+t/(one+sqrtl(one+t))); in asinhl()
|
H A D | e_sinhl.c | 122 k_hexpl(fabsl(x), &hi, &lo); in sinhl() 127 if (fabsl(x) <= o_threshold) in sinhl() 128 RETURNI(s*hexpl(fabsl(x))); in sinhl()
|
H A 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()
|
H A 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()
|
/third_party/musl/porting/liteos_m/kernel/src/math/ |
H A D | fabsl.c | 3 long double fabsl(long double x) in fabsl() function 8 long double fabsl(long double x) in fabsl() function
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | fabsl.c | 3 long double fabsl(long double x) in fabsl() function 8 long double fabsl(long double x) in fabsl() function
|
H A D | powl.c | 249 ya = fabsl(y); in powl() 251 yb = 0.5 * fabsl(w); in powl() 290 if (iyflg && floorl(x) == x && fabsl(y) < 32768.0) { in powl()
|
H A D | tgammal.c | 212 q = fabsl(x); in tgammal() 227 z = fabsl(z) * stirf(q); in tgammal()
|
H A D | atan2l.c | 76 z = atanl(fabsl(y/x)); in atan2l()
|
H A D | asinl.c | 56 z = (1.0 - fabsl(x))*0.5; in asinl()
|
H A D | erfl.c | 246 s = fabsl(x) - 1; in erfc1() 262 x = fabsl(x); in erfc2()
|
/third_party/musl/src/math/ |
H A D | fabsl.c | 3 long double fabsl(long double x) in fabsl() function 8 long double fabsl(long double x) in fabsl() function
|
H A D | powl.c | 223 if (fabsl(y) > 2*(-LDBL_MIN_EXP+LDBL_MANT_DIG+1)/LDBL_EPSILON) { in powl() 257 ya = fabsl(y); in powl() 259 yb = 0.5 * fabsl(w); in powl() 298 if (iyflg && floorl(x) == x && fabsl(y) < 32768.0) { in powl()
|
H A D | tgammal.c | 212 q = fabsl(x); in tgammal() 227 z = fabsl(z) * stirf(q); in tgammal()
|
H A D | atan2l.c | 76 z = atanl(fabsl(y/x)); in atan2l()
|
H A D | asinl.c | 56 z = (1.0 - fabsl(x))*0.5; in asinl()
|
/third_party/musl/porting/uniproton/kernel/src/math/ |
H A D | fabsl.c | 3 long double fabsl(long double x) in fabsl() function 8 long double fabsl(long double x) in fabsl() function
|
/third_party/musl/src/math/i386/ |
H A D | fabsl.c | 3 long double fabsl(long double x) in fabsl() function
|
/third_party/musl/src/math/s390x/ |
H A D | fabsl.c | 5 long double fabsl(long double x) in fabsl() function 13 #include "../fabsl.c"
|
/third_party/musl/libc-test/src/functionalext/supplement/math/ |
H A D | nanl.c | 29 if (fabsl(ret - NAN) > LDBL_EPSILON) { in nanl_0100()
|
/third_party/musl/libc-test/src/math/ |
H A D | fabsl.c | 12 #include "sanity/fabsl.h" 13 #include "special/fabsl.h" 33 y = fabsl(p->x); in main() 37 printf("%s:%d: bad fp exception: %s fabsl(%La)=%La, want %s", in main() 44 printf("%s:%d: %s fabsl(%La) want %La got %La ulperr %.3f = %a + %a\n", in main()
|
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/ |
H A D | math_fabs_test.cpp | 65 * @tc.desc: When the parameter of fabsl is valid, test the return value of the function. 70 EXPECT_DOUBLE_EQ(5.0L, fabsl(-5.0L)); in HWTEST_F()
|
/third_party/musl/libc-test/src/functionalext/supplement/stdlib/ |
H A D | wcstold.c | 26 if (!(fabsl(a - b) < LDBL_EPSILON)) \
|