HomeSort by relevance Sort by last modified time
    Searched full:fabsf (Results 1 - 25 of 169) sorted by null

1 2 3 4 5 6 7

  /frameworks/compile/libbcc/tests/data/src/
rollo3.c 2 float fabsf(float);
6 float f = fabsf(-10.0f);
  /external/llvm/test/Transforms/TailCallElim/
inf-recursion.ll 25 ; CHECK: define float @fabsf
28 define float @fabsf(float %f) {
29 %t= call float @fabsf(float 2.0)
  /external/llvm/test/CodeGen/Generic/
fneg-fabs.ll 15 declare float @fabsf(float)
23 %Y = call float @fabsf( float %X ) ; <float> [#uses=1]
  /external/llvm/test/CodeGen/CellSPU/
fcmp32.ll 6 declare float @fabsf(float)
18 %1 = call float @fabsf(float %arg1)
19 %2 = call float @fabsf(float %arg2)
fneg-fabs.ll 32 declare float @fabsf(float)
40 %Y = call float @fabsf( float %X )
  /external/llvm/test/CodeGen/X86/
fabs.ll 1 ; Make sure this testcase codegens to the fabs instruction, not a call to fabsf
7 declare float @fabsf(float)
12 %Y = call float @fabsf(float %X)
  /external/llvm/test/Transforms/SimplifyLibCalls/
pow-to-sqrt.ll 9 ; CHECK: %fabsf = call float @fabsf(float %sqrtf) nounwind readonly
11 ; CHECK: %tmp1 = select i1 %tmp, float 0x7FF0000000000000, float %fabsf
  /bionic/libm/man/
fabs.3 41 .Nm fabsf ,
51 .Fn fabsf "float x"
57 .Fn fabsf
65 .Fn fabsf
83 .Fn fabsf
  /bionic/libm/src/
e_coshf.c 39 t = expm1f(fabsf(x));
47 t = __ieee754_expf(fabsf(x));
52 if (ix < 0x42b17217) return half*__ieee754_expf(fabsf(x));
56 w = __ieee754_expf(half*fabsf(x));
s_fabsf.c 21 * fabsf(x) returns the absolute value of x.
28 fabsf(float x) function
e_sinhf.c 43 t = expm1f(fabsf(x));
49 if (ix < 0x42b17217) return h*__ieee754_expf(fabsf(x));
53 w = __ieee754_expf((float)0.5*fabsf(x));
s_asinhf.c 40 w = __ieee754_logf(fabsf(x))+ln2;
42 t = fabsf(x);
46 w =log1pf(fabsf(x)+t/(one+__ieee754_sqrtf(one+t)));
e_remainderf.c 48 x = fabsf(x);
49 p = fabsf(p);
s_tanhf.c 45 t = expm1f(two*fabsf(x));
48 t = expm1f(-two*fabsf(x));
  /external/llvm/test/CodeGen/ARM/
fabss.ll 9 %0 = tail call float @fabsf(float %dum)
14 declare float @fabsf(float)
fparith.ll 87 %tmp1 = call float @fabsf( float %a ) ; <float> [#uses=1]
91 declare float @fabsf(float)
  /external/webkit/Source/WebCore/svg/
SVGTransformDistance.cpp 169 m_angle += absoluteValue ? fabsf(transform.angle()) : transform.angle();
170 m_cx += absoluteValue ? fabsf(transform.rotationCenter().x()) : transform.rotationCenter().x();
171 m_cy += absoluteValue ? fabsf(transform.rotationCenter().y()) : transform.rotationCenter().y();
174 float dx = absoluteValue ? fabsf(transform.translate().x()) : transform.translate().x();
175 float dy = absoluteValue ? fabsf(transform.translate().y()) : transform.translate().y();
180 float scaleX = absoluteValue ? fabsf(transform.scale().width()) : transform.scale().width();
181 float scaleY = absoluteValue ? fabsf(transform.scale().height()) : transform.scale().height();
187 m_angle += absoluteValue ? fabsf(transform.angle()) : transform.angle();
  /frameworks/base/libs/rs/
rsScriptC_Lib.cpp 48 if (fabsf(x) >= 0.5f) {
53 const float y = B * x * fabsf(x) + C * x;
54 return 0.2215f * (y * fabsf(y) - y) + y;
67 if (fabsf(x) >= 0.5f) {
72 const float y = B * x * fabsf(x) + C * x;
73 return 0.2215f * (y * fabsf(y) - y) + y;
  /frameworks/base/opengl/libagl/
fp.cpp 65 if (fabsf(x) >= 0.5f) {
70 const float y = B*x*fabsf(x) + C*x;
71 return 0.2215f * (y*fabsf(y) - y) + y;
  /external/skia/src/core/
SkCordic.cpp 226 float error = fabsf(sine - sine2);
229 error = fabsf(cosine - cosine2);
236 error = fabsf(_tan - tan2);
237 if (error > 0.05 && fabsf(_tan) < 1e6)
246 float error = fabsf(arcsine - arcsine2);
260 float error = fabsf(arccos - arccos2);
277 float error = fabsf(arctan - arctan2);
293 float error = fabsf(log - log2);
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/lib/
libm.so 
  /development/ndk/platforms/android-3/arch-arm/symbols/
libm.so.functions.txt 115 fabsf
  /development/ndk/platforms/android-9/arch-x86/symbols/
libm.so.functions.txt 70 fabsf
  /external/webkit/Source/WebCore/platform/mac/
ScrollAnimatorMac.mm 810 if (fabsf(wheelEvent.deltaY()) >= fabsf(wheelEvent.deltaX())) {
845 if (fabsf(deltaY) >= fabsf(deltaX)) {
921 if (fabsf(deltaY) >= fabsf(deltaX))
    [all...]
  /external/stlport/stlport/stl/config/
_gcc.h 127 /* No *f math fuctions variants (i.e. sqrtf, fabsf, etc.) */
149 /* No *f math fuctions variants (i.e. sqrtf, fabsf, etc.) */

Completed in 2920 milliseconds

1 2 3 4 5 6 7