Home
last modified time | relevance | path

Searched refs:fabsf (Results 1 – 25 of 73) sorted by relevance

123

/openbsd/lib/libm/src/
H A Ds_csqrtf.c88 r = fabsf(y); in csqrtf()
98 if ((fabsf(x) > 4.0f) || (fabsf(y) > 4.0f)) { in csqrtf()
117 r = scale * fabsf((0.5f * y) / t); in csqrtf()
122 t = scale * fabsf((0.5f * y) / r); in csqrtf()
H A De_coshf.c36 t = expm1f(fabsf(x)); in coshf()
44 t = expf(fabsf(x)); in coshf()
49 if (ix < 0x42b17180) return half*expf(fabsf(x)); in coshf()
53 w = expf(half*fabsf(x)); in coshf()
H A Ds_ctanf.c92 x = fabsf(2.0f * crealf(z)); in _ctansf()
93 y = fabsf(2.0f * cimagf(z)); in _ctansf()
125 while (fabsf(t/d) > MACHEPF) in _ctansf()
138 if(fabsf(d) < 0.25f) in ctanf()
H A Ds_asinhf.c36 w = logf(fabsf(x))+ln2; in asinhf()
38 t = fabsf(x); in asinhf()
42 w =log1pf(fabsf(x)+t/(one+sqrtf(one+t))); in asinhf()
H A De_sinhf.c39 t = expm1f(fabsf(x)); in sinhf()
45 if (ix < 0x42b17180) return h*expf(fabsf(x)); in sinhf()
49 w = expf((float)0.5*fabsf(x)); in sinhf()
H A Ds_fabsf.c24 fabsf(float x) in fabsf() function
31 DEF_STD(fabsf);
H A Ds_tanhf.c43 t = expm1f(two*fabsf(x)); in tanhf()
46 t = expm1f(-two*fabsf(x)); in tanhf()
H A De_remainderf.c43 x = fabsf(x); in remainderf()
44 p = fabsf(p); in remainderf()
H A Ds_erff.c120 s = fabsf(x)-one; in erff()
128 x = fabsf(x); in erff()
175 s = fabsf(x)-one; in erfcf()
185 x = fabsf(x); in erfcf()
H A Ds_logbf.c25 if(ix==0) return (float)-1.0/fabsf(x); in logbf()
H A De_jnf.c47 x = fabsf(x); in jnf()
128 tmp = tmp*logf(fabsf(v*tmp)); in jnf()
H A Ds_ccosf.c62 if(fabsf(x) <= 0.5f) { in _cchshf()
H A Ds_csinf.c63 if(fabsf(x) <= 0.5f) { in cchshf()
H A Ds_casinf.c70 if(fabsf(x) > 1.0f) { in casinf()
H A Ds_atanf.c71 x = fabsf(x); in atanf()
H A De_atan2f.c80 else z=atanf(fabsf(y/x)); /* safe to do y/x */ in atan2f()
H A Dk_tanf.c48 if((ix|(iy+1))==0) return one/fabsf(x); in __kernel_tanf()
H A De_asinf.c60 w = one-fabsf(x); in asinf()
/openbsd/lib/libm/arch/sh/
H A Ds_fabsf.c10 fabsf(float f) in fabsf() function
17 DEF_STD(fabsf);
/openbsd/gnu/gcc/libstdc++-v3/libmath/
H A Dstubs.c39 fabsf(float x) in fabsf() function
263 float s = fabsf(x) + fabsf(y); in hypotf()
/openbsd/gnu/lib/libstdc++/libstdc++/libmath/
H A Dstubs.c110 float s = fabsf(x) + fabsf(y); in hypotf()
/openbsd/gnu/gcc/fixincludes/tests/base/
H A Dmath.h54 # define fabsf(x) ((float)fabs((double)(float)(x))) macro
/openbsd/regress/lib/libm/lgamma/
H A Dlgamma.c58 assert(fabsf(lgammaf(3.0F) - (float)M_LN2) < FLT_EPSILON && signgam == 1); in main()
/openbsd/gnu/usr.bin/gcc/gcc/fixinc/tests/base/
H A Dmath.h46 # define fabsf(x) ((float)fabs((double)(float)(x))) macro
/openbsd/gnu/llvm/clang/lib/Headers/
H A D__clang_cuda_cmath.h43 __DEVICE__ float abs(float __x) { return ::fabsf(__x); } in abs()
53 __DEVICE__ float fabs(float __x) { return ::fabsf(__x); } in fabs()
460 using ::fabsf;

123