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

1 2 3 4 5 6

  /frameworks/compile/libbcc/tests/data/src/
rollo3.c 2 float fabsf(float);
6 float f = fabsf(-10.0f);
  /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;
  /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;
  /packages/inputmethods/LatinIME/native/jni/src/
geometry_utils.h 39 const float deltaA = fabsf(a1 - a2);
  /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/legacy/src/core/
SkCordic.cpp 218 float error = fabsf(sine - sine2);
221 error = fabsf(cosine - cosine2);
228 error = fabsf(_tan - tan2);
229 if (error > 0.05 && fabsf(_tan) < 1e6)
238 float error = fabsf(arcsine - arcsine2);
252 float error = fabsf(arccos - arccos2);
269 float error = fabsf(arctan - arctan2);
285 float error = fabsf(log - log2);
  /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);
  /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();
  /external/webkit/Source/WebCore/html/
TimeRanges.cpp 132 closest = fabsf(startTime - time);
134 closest = fabsf(endTime - time);

Completed in 367 milliseconds

1 2 3 4 5 6