Searched refs:fabsl (Results 1 - 25 of 32) sorted by relevance

12

/freebsd-10.0-release/lib/msun/src/
H A Ds_fabsl.c36 fabsl(long double x) function
H A Ds_csqrtl.c76 return (cpackl(fabsl(b - b), copysignl(a, b)));
86 if (fabsl(a) >= THRESH || fabsl(b) >= THRESH) {
100 result = cpackl(fabsl(b) / (2 * t), copysignl(t, b));
H A Ds_asinhl.c82 w = logl(fabsl(x))+ln2;
84 t = fabsl(x);
88 w =log1pl(fabsl(x)+t/(one+sqrtl(one+t)));
H A De_atanhl.c64 RETURNI(fabsl(x) == 1 ? x / zero : (x - x) / (x - x));
H A De_hypotl.c59 a = fabsl(a);
60 b = fabsl(b);
67 w = fabsl(x+0.0)-fabsl(y+0.0);
H A De_asinl.c58 w = one-fabsl(x);
H A Ds_atanl.c60 x = fabsl(x);
H A De_atan2l.c112 else z=atanl(fabsl(y/x)); /* safe to do y/x */
H A Dmath_private.h365 assert(__ia == 0 || fabsl(__ia) >= fabsl(__ib)); \
H A Ds_remquol.c160 y = fabsl(y);
H A Dmath.h458 long double fabsl(long double) __pure2;
/freebsd-10.0-release/tools/regression/lib/msun/
H A Dtest-utils.h118 return (fabsl(x) == fabsl(y));
144 ret = fabsl(x - y) <= fabsl(tol);
146 ret = fabsl(x - y) <= fabsl(y * tol);
H A Dtest-trig.c196 assert(fabsl(sinl(ld_pi_odd[i])) < LDBL_EPSILON);
198 assert(fabsl(tanl(ld_pi_odd[i])) < LDBL_EPSILON);
200 assert(fabsl(sinl(-ld_pi_odd[i])) < LDBL_EPSILON);
202 assert(fabsl(tanl(-ld_pi_odd[i])) < LDBL_EPSILON);
204 assert(fabsl(sinl(ld_pi_odd[i] * 2)) < LDBL_EPSILON);
206 assert(fabsl(tanl(ld_pi_odd[i] * 2)) < LDBL_EPSILON);
208 assert(fabsl(sinl(-ld_pi_odd[i] * 2)) < LDBL_EPSILON);
210 assert(fabsl(tanl(-ld_pi_odd[i] * 2)) < LDBL_EPSILON);
/freebsd-10.0-release/contrib/libstdc++/libmath/
H A Dstubs.c47 fabsl(long double x) function
287 long double s = fabsl(x) + fabsl(y);
/freebsd-10.0-release/lib/msun/ld80/
H A Dk_tanl.c80 if (fabsl(x) >= 0.67434) {
H A Ds_expl.c385 (0x1p100 * x + fabsl(x)) * 0x1p-100);
/freebsd-10.0-release/lib/msun/ld128/
H A Dk_tanl.c72 if (fabsl(x) >= 0.67434) {
H A Ds_expl.c411 (0x1p200 * x + fabsl(x)) * 0x1p-200);
/freebsd-10.0-release/contrib/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h196 /// long double fabsl(long double x);
197 fabsl, enumerator in enum:llvm::LibFunc::Func
676 case LibFunc::fabs: case LibFunc::fabsf: case LibFunc::fabsl:
/freebsd-10.0-release/lib/msun/
H A DSymbol.map94 fabsl;
H A DMakefile168 MLINKS+=fabs.3 fabsf.3 fabs.3 fabsl.3
/freebsd-10.0-release/gnu/lib/libstdc++/
H A Dconfig.h75 /* Define to 1 if you have the `fabsl' function. */
881 # define fabsl _fabsl macro
/freebsd-10.0-release/tools/regression/lib/libc/stdio/
H A Dtest-scanfloat.c303 delta = fabsl(a - b);
/freebsd-10.0-release/contrib/llvm/lib/Target/
H A DTargetLibraryInfo.cpp114 "fabsl",
384 TLI.setUnavailable(LibFunc::fabsl);
/freebsd-10.0-release/include/
H A Dtgmath.h160 fabsl, fabs, fabsf, x)

Completed in 220 milliseconds

12