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

1 2 3 4 5 6 7 8 9

  /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}}
warn-absolute-value.cpp 9 float fabsf(float);
42 (void)fabsf(x);
43 // expected-warning@-1 {{using floating point absolute value function 'fabsf' when argument is of integer type}}
106 (void)fabsf(x);
107 // expected-warning@-1 {{using floating point absolute value function 'fabsf' when argument is of integer type}}
177 (void)fabsf(x);
178 // expected-warning@-1 {{using floating point absolute value function 'fabsf' when argument is of integer type}}
256 (void)fabsf(x);
320 (void)fabsf(x);
321 // expected-warning@-1{{absolute value function 'fabsf' given an argument of type 'double' but has parameter of type 'float' which may cause truncation o (…)
    [all...]
  /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);
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)));
s_csqrtf.c 67 return (CMPLXF(fabsf(b - b), copysignf(a, b)));
86 return (CMPLXF(fabsf(b) / (2.0 * t), copysignf(t, b)));
s_tanhf.c 46 t = expm1f(two*fabsf(x));
49 t = expm1f(-two*fabsf(x));
s_logbf.c 31 if(ix==0) return (float)-1.0/fabsf(x);
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);
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 (CMPLXF(fabsf(ry), rx));
274 return (CMPLXF(fabsf(ry), copysignf(rx, cimagf(z))))
    [all...]
e_jnf.c 56 x = fabsf(x);
137 tmp = tmp*__ieee754_logf(fabsf(v*tmp));
163 if (fabsf(z) >= fabsf(w))
s_ccoshf.c 65 h = expf(fabsf(x)) * 0.5F;
69 z = __ldexp_cexpf(CMPLXF(fabsf(x), y), -1);
  /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)'}}
warn-absolute-value.c 8 float fabsf(float);
21 (void)fabsf(x);
22 // expected-warning@-1 {{using floating point absolute value function 'fabsf' when argument is of integer type}}
83 (void)fabsf(x);
84 // expected-warning@-1 {{using floating point absolute value function 'fabsf' when argument is of integer type}}
152 (void)fabsf(x);
153 // expected-warning@-1 {{using floating point absolute value function 'fabsf' when argument is of integer type}}
218 // expected-note@-2 {{use function 'fabsf' instead}}
219 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:12}:"fabsf"
222 // expected-note@-2 {{use function 'fabsf' instead}
    [all...]
  /external/clang/test/CodeGen/
arm-vfp-asm-constraint.c 14 float fabsf(float x) { // CHECK-LABEL: @fabsf( function
  /system/media/audio_utils/include/audio_utils/
power.h 82 return 20.f * log10f(fabsf(amplitude));
  /device/google/contexthub/firmware/os/algos/calibration/util/
cal_log.h 74 ((x < 0) ? "-" : ""), (int)CAL_FLOOR(fabsf(x)), \
75 (int)((fabsf(x) - CAL_FLOOR(fabsf(x))) * \
  /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;
  /device/google/contexthub/firmware/os/algos/common/math/
vec.c 28 if (fabsf(inX) <= fabsf(inY) && fabsf(inX) <= fabsf(inZ)) {
32 } else if (fabsf(inY) <= fabsf(inZ)) {
  /bionic/libm/
builtins.cpp 25 // They get fabsf right, but we need to be careful in fabsl too.
35 float fabsf(float x) { function
  /device/google/contexthub/firmware/lib/libm/
wf_asin.c 39 if(fabsf(x)>(float)1.0) {
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_emit.c 37 float vp_minx = -fabsf(vpscale[0]) + vptranslate[0];
38 float vp_maxx = fabsf(vpscale[0]) + vptranslate[0];
39 float vp_miny = -fabsf(vpscale[1]) + vptranslate[1];
40 float vp_maxy = fabsf(vpscale[1]) + vptranslate[1];
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
geometry_utils.h 42 float delta = fabsf(a1 - a2);
  /system/media/audio_utils/
limiter.c 38 float in_abs = fabsf(in);

Completed in 538 milliseconds

1 2 3 4 5 6 7 8 9