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

1 2 3 4 5 6 7 8 9

  /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));
  /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/third_party/WebKit/Source/core/platform/mac/
ScrollElasticityController.mm 176 if (fabsf(deltaY) >= fabsf(deltaX))
203 if (deltaY != 0 && (fabsf(deltaX / deltaY) < rubberbandDirectionLockStretchRatio))
205 else if (fabsf(deltaX) < rubberbandMinimumRequiredDeltaBeforeStretch) {
214 if (deltaX != 0 && (fabsf(deltaY / deltaX) < rubberbandDirectionLockStretchRatio))
216 else if (fabsf(deltaY) < rubberbandMinimumRequiredDeltaBeforeStretch) {
225 if (fabsf(deltaY) >= fabsf(deltaX)) {
226 if (fabsf(deltaX) < rubberbandMinimumRequiredDeltaBeforeStretch) {
271 if ((m_client->pinnedInDirection(FloatSize(eventCoalescedDeltaX, eventCoalescedDeltaY)) || (fabsf(eventCoalescedDeltaX) + fabsf(eventCoalescedDeltaY) <= 0)) && m_lastMomentumScrollTimestamp)
    [all...]
  /external/chromium_org/ui/views/controls/
slide_out_view.cc 31 if (fabsf(event->details().velocity_x()) > kFlingThresholdForClose) {
55 1.f - std::min(fabsf(gesture_scroll_amount_) / width(), 1.f));
60 float scrolled_ratio = fabsf(gesture_scroll_amount_) / width();
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
geometry_utils.h 41 const float deltaA = fabsf(a1 - a2);
  /external/chromium_org/third_party/skia/src/core/
SkCordic.cpp 214 float error = fabsf(sine - sine2);
217 error = fabsf(cosine - cosine2);
224 error = fabsf(_tan - tan2);
225 if (error > 0.05 && fabsf(_tan) < 1e6)
234 float error = fabsf(arcsine - arcsine2);
248 float error = fabsf(arccos - arccos2);
265 float error = fabsf(arctan - arctan2);
281 float error = fabsf(log - log2);
  /external/clang/test/CodeGen/
libcall-declarations.c 34 float fabsf(float);
82 exp, expl, expf, exp2, exp2l, exp2f, fabs, fabsl, fabsf, floor, floorl,
118 // CHECK-NOERRNO: declare float @fabsf(float) [[NUW]]
170 // CHECK-ERRNO: declare float @fabsf(float) [[NUW]]
  /external/skia/src/core/
SkCordic.cpp 214 float error = fabsf(sine - sine2);
217 error = fabsf(cosine - cosine2);
224 error = fabsf(_tan - tan2);
225 if (error > 0.05 && fabsf(_tan) < 1e6)
234 float error = fabsf(arcsine - arcsine2);
248 float error = fabsf(arccos - arccos2);
265 float error = fabsf(arctan - arctan2);
281 float error = fabsf(log - log2);
  /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/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_setup_line.c 340 if (fabsf(dx) >= fabsf(dy)) {
355 if (fabsf(x1diff) + fabsf(y1diff) < 0.5) {
374 if (fabsf(x2diff) + fabsf(y2diff) < 0.5) {
453 if (fabsf(x1diff) + fabsf(y1diff) < 0.5) {
471 if (fabsf(x2diff) + fabsf(y2diff) < 0.5)
    [all...]

Completed in 428 milliseconds

1 2 3 4 5 6 7 8 9