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

1 2 3 4 5 6 7 8 91011

  /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);
s_fabsf.c 20 * fabsf(x) returns the absolute value of x.
27 fabsf(float x) function
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 (cpackf(fabsf(b - b), copysignf(a, b)));
86 return (cpackf(fabsf(b) / (2.0 * t), copysignf(t, b)));
s_tanhf.c 44 t = expm1f(two*fabsf(x));
47 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);
e_jnf.c 50 x = fabsf(x);
131 tmp = tmp*__ieee754_logf(fabsf(v*tmp));
157 if (fabsf(z) >= fabsf(w))
s_ccoshf.c 65 h = expf(fabsf(x)) * 0.5f;
69 z = __ldexp_cexpf(cpackf(fabsf(x), y), -1);
s_csinhf.c 65 h = expf(fabsf(x)) * 0.5f;
69 z = __ldexp_cexpf(cpackf(fabsf(x), y), -1);
e_asinf.c 57 w = one-fabsf(x);
e_atan2f.c 88 else z=atanf(fabsf(y/x)); /* safe to do y/x */
s_atanf.c 67 x = fabsf(x);
s_ctanhf.c 64 float exp_mx = expf(-fabsf(x));
  /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...]
  /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;
  /external/chromium_org/ui/views/controls/
slide_out_view.cc 29 if (fabsf(event->details().velocity_x()) > kFlingThresholdForClose) {
52 1.f - std::min(fabsf(gesture_scroll_amount_) / width(), 1.f));
56 float scrolled_ratio = fabsf(gesture_scroll_amount_) / width();
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
ScrollElasticityController.mm 188 if (fabsf(deltaY) >= fabsf(deltaX))
220 if (deltaY != 0 && (fabsf(deltaX / deltaY) < rubberbandDirectionLockStretchRatio))
222 else if (fabsf(deltaX) < rubberbandMinimumRequiredDeltaBeforeStretch) {
231 if (deltaX != 0 && (fabsf(deltaY / deltaX) < rubberbandDirectionLockStretchRatio))
233 else if (fabsf(deltaY) < rubberbandMinimumRequiredDeltaBeforeStretch) {
242 if (fabsf(deltaY) >= fabsf(deltaX)) {
243 if (fabsf(deltaX) < rubberbandMinimumRequiredDeltaBeforeStretch) {
289 if ((m_client->pinnedInDirection(FloatSize(eventCoalescedDeltaX, eventCoalescedDeltaY)) || (fabsf(eventCoalescedDeltaX) + fabsf(eventCoalescedDeltaY) <= 0)) && m_lastMomentumScrollTimestamp)
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
geometry_utils.h 41 const float deltaA = fabsf(a1 - a2);
  /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;

Completed in 311 milliseconds

1 2 3 4 5 6 7 8 91011