Searched refs:fabsf (Results 1 - 25 of 41) sorted by relevance

12

/freebsd-10.0-release/lib/msun/src/
H A De_coshf.c38 t = expm1f(fabsf(x));
46 t = __ieee754_expf(fabsf(x));
51 if (ix < 0x42b17217) return half*__ieee754_expf(fabsf(x));
55 return __ldexp_expf(fabsf(x), -1);
H A Ds_fabsf.c20 * fabsf(x) returns the absolute value of x.
27 fabsf(float x) function
H A De_sinhf.c42 t = expm1f(fabsf(x));
48 if (ix < 0x42b17217) return h*__ieee754_expf(fabsf(x));
52 return h*2.0F*__ldexp_expf(fabsf(x), -1);
H A Ds_asinhf.c39 w = __ieee754_logf(fabsf(x))+ln2;
41 t = fabsf(x);
45 w =log1pf(fabsf(x)+t/(one+__ieee754_sqrtf(one+t)));
H A Ds_csqrtf.c67 return (cpackf(fabsf(b - b), copysignf(a, b)));
86 return (cpackf(fabsf(b) / (2.0 * t), copysignf(t, b)));
H A Ds_tanhf.c44 t = expm1f(two*fabsf(x));
47 t = expm1f(-two*fabsf(x));
H A Ds_logbf.c31 if(ix==0) return (float)-1.0/fabsf(x);
H A De_hypotf.c33 a = fabsf(a);
34 b = fabsf(b);
40 w = fabsf(x+0.0F)-fabsf(y+0.0F);
H A De_remainderf.c47 x = fabsf(x);
48 p = fabsf(p);
H A Dcatrigf.c51 #define isinf(x) (fabsf(x) == INFINITY)
104 } else if (x >= FLT_EPSILON * fabsf(y - 1)) {
132 } else if (x >= FLT_EPSILON * fabsf(y - 1)) {
154 ax = fabsf(x);
155 ay = fabsf(y);
212 ax = fabsf(x);
213 ay = fabsf(y);
227 rx = fabsf(cimagf(w));
271 return (cpackf(fabsf(ry), rx));
274 return (cpackf(fabsf(r
[all...]
H A De_jnf.c50 x = fabsf(x);
131 tmp = tmp*__ieee754_logf(fabsf(v*tmp));
157 if (fabsf(z) >= fabsf(w))
H A Ds_ccoshf.c65 h = expf(fabsf(x)) * 0.5f;
69 z = __ldexp_cexpf(cpackf(fabsf(x), y), -1);
H A Ds_csinhf.c65 h = expf(fabsf(x)) * 0.5f;
69 z = __ldexp_cexpf(cpackf(fabsf(x), y), -1);
H A De_asinf.c57 w = one-fabsf(x);
H A De_atan2f.c88 else z=atanf(fabsf(y/x)); /* safe to do y/x */
H A Ds_atanf.c67 x = fabsf(x);
H A Ds_ctanhf.c64 float exp_mx = expf(-fabsf(x));
H A Ds_erff.c106 s = fabsf(x)-one;
114 x = fabsf(x);
156 s = fabsf(x)-one;
166 x = fabsf(x);
H A Ds_remquof.c107 y = fabsf(y);
H A De_j0f.c50 x = fabsf(x);
/freebsd-10.0-release/contrib/libstdc++/libmath/
H A Dstubs.c39 fabsf(float x) function
263 float s = fabsf(x) + fabsf(y);
H A Dmathconf.h267 # define fabsf(x) fabs (x) macro
/freebsd-10.0-release/contrib/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h194 /// float fabsf(float x);
195 fabsf, 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.map93 fabsf;
/freebsd-10.0-release/gnu/lib/libstdc++/
H A Dconfig.h72 /* Define to 1 if you have the `fabsf' function. */
876 # define fabsf _fabsf macro

Completed in 89 milliseconds

12