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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/CodeGen/Hexagon/
opt-fabs.ll 2 ; Optimize fabsf to clrbit in V5.
11 %call = call float @fabsf(float %0) readnone
15 declare float @fabsf(float)
  /external/clang/test/SemaCXX/
warn-absolute-value-header.cpp 6 float fabsf(float);
22 (void)fabsf(d);
23 // expected-warning@-1{{absolute value function 'fabsf' given an argument of type 'double' but has parameter of type 'float' which may cause truncation of value}}
34 (void)fabsf(ll);
35 // expected-warning@-1{{using floating point absolute value function 'fabsf' when argument is of integer type}}
42 (void)fabsf(f);
45 (void)fabsf(i);
46 // expected-warning@-1{{using floating point absolute value function 'fabsf' when argument is of integer type}}
  /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/Transforms/InstCombine/
fabs.ll 5 declare float @fabsf(float)
11 %fabsf = tail call float @fabsf(float %mul)
12 ret float %fabsf
47 %fabsf = tail call float @llvm.fabs.f32(float %mul)
48 ret float %fabsf
  /external/clang/test/Sema/
warn-absolute-value-header.c 7 int fabsf(int);
8 // expected-warning@-1{{incompatible redeclaration of library function 'fabsf'}}
9 // expected-note@-2{{'fabsf' is a builtin with type 'float (float)'}}
  /external/llvm/test/Transforms/TailCallElim/
inf-recursion.ll 25 ; CHECK-LABEL: define float @fabsf(
28 define float @fabsf(float %f) {
29 %t= call float @fabsf(float 2.0)
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_coshf.c 38 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);
s_fabsf.c 20 * fabsf(x) returns the absolute value of x.
27 fabsf(float x) function
catrigf.c 51 #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(ry), copysignf(rx, cimagf(z))))
    [all...]
e_sinhf.c 42 t = expm1f(fabsf(x));
48 if (ix < 0x42b17217) return h*__ieee754_expf(fabsf(x));
52 return h*2.0F*__ldexp_expf(fabsf(x), -1);
s_asinhf.c 39 w = __ieee754_logf(fabsf(x))+ln2;
41 t = fabsf(x);
45 w =log1pf(fabsf(x)+t/(one+__ieee754_sqrtf(one+t)));
e_hypotf.c 33 a = fabsf(a);
34 b = fabsf(b);
40 w = fabsf(x+0.0F)-fabsf(y+0.0F);
e_remainderf.c 47 x = fabsf(x);
48 p = fabsf(p);
s_tanhf.c 46 t = expm1f(two*fabsf(x));
49 t = expm1f(-two*fabsf(x));
  /external/llvm/test/CodeGen/X86/
fabs.ll 1 ; Make sure this testcase codegens to the fabs instruction, not a call to fabsf
6 declare float @fabsf(float)
14 %Y = call float @fabsf(float %X) readnone
22 ; NOOPT-NOT: fabsf
fnabs.ll 12 %fabs = tail call float @fabsf(float %a) #1
23 %fabs = tail call float @fabsf(float %a) #1
74 declare float @fabsf(float)
  /external/llvm/test/CodeGen/ARM/
fabss.ll 9 %0 = tail call float @fabsf(float %dum) readnone
14 declare float @fabsf(float)
  /external/llvm/test/CodeGen/Mips/
f16abs.ll 20 %call2 = tail call float @fabsf(float %1) #2
23 ; static-NOT: jal fabsf
30 declare float @fabsf(float) #1
fabs.ll 22 %call = tail call float @fabsf(float %a) nounwind readnone
26 declare float @fabsf(float) nounwind readnone
  /frameworks/rs/
rsScriptC_Lib.cpp 51 if (fabsf(x) >= 0.5f) {
56 const float y = B * x * fabsf(x) + C * x;
57 return 0.2215f * (y * fabsf(y) - y) + y;
70 if (fabsf(x) >= 0.5f) {
75 const float y = B * x * fabsf(x) + C * x;
76 return 0.2215f * (y * fabsf(y) - y) + y;
  /external/llvm/test/Transforms/Inline/
inline-fp.ll 27 %call3 = call float @fabsf(float %call)
35 %call4 = call float @fabsf(float %call1)
40 %call8 = call float @fabsf(float %call2)
74 %call3 = call float @fabsf(float %call)
82 %call4 = call float @fabsf(float %call1)
87 %call8 = call float @fabsf(float %call2)
131 declare float @fabsf(float) optsize minsize
  /frameworks/native/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;
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/lib/
libm.so 
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/lib/
libm.so 
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/lib/
libm.so 

Completed in 557 milliseconds

1 2 3 4 5 6 7 8 91011>>