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

1 2 3 4 5 6

  /bionic/libm/src/
s_fabs.c 18 * fabs(x) returns the absolute value of x.
25 fabs(double x) function
e_cosh.c 60 t = expm1(fabs(x));
68 t = __ieee754_exp(fabs(x));
73 if (ix < 0x40862E42) return half*__ieee754_exp(fabs(x));
79 w = __ieee754_exp(half*fabs(x));
e_sinh.c 61 t = expm1(fabs(x));
67 if (ix < 0x40862E42) return h*__ieee754_exp(fabs(x));
72 w = __ieee754_exp(0.5*fabs(x));
s_asinh.c 48 w = __ieee754_log(fabs(x))+ln2;
50 t = fabs(x);
54 w =log1p(fabs(x)+t/(one+__ieee754_sqrt(one+t)));
s_tanh.c 67 t = expm1(two*fabs(x));
70 t = expm1(-two*fabs(x));
s_logb.c 35 if((ix|lx)==0) return -1.0/fabs(x);
e_remainder.c 56 x = fabs(x);
57 p = fabs(p);
e_atan2.c 111 else z=atan(fabs(y/x)); /* safe to do y/x */
s_atan.c 94 x = fabs(x);
s_erf.c 215 s = fabs(x)-one;
223 x = fabs(x);
270 s = fabs(x)-one;
280 x = fabs(x);
  /system/extras/tests/bionic/libstdc++/
test_cmath.cpp 66 using ::fabs;
  /external/webkit/WebCore/platform/graphics/
UnitBezier.h 75 if (fabs (x2) < epsilon)
78 if (fabs(d2) < 1e-6)
95 if (fabs(x2 - x) < epsilon)
  /external/stlport/stlport/stl/config/
_como.h 97 # define fabsl fabs
129 # define fabsf fabs
130 # define fabsl fabs
169 # define fabsl fabs
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 97 # define fabsl fabs
129 # define fabsf fabs
130 # define fabsl fabs
169 # define fabsl fabs
  /bionic/libstdc++/include/
cmath 68 using ::fabs;
  /ndk/sources/cxx-stl/system/include/
cmath 68 using ::fabs;
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
cmath 66 using ::fabs;
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
cmath 66 using ::fabs;
  /external/bluetooth/bluez/sbc/
sbc_math.h 27 #define fabs(x) ((x) < 0 ? -(x) : (x)) macro
  /external/srec/srec/clib/
jacobi.c 112 g = 100.0 * fabs(a[i][i]);
115 if ((iter >= 4) && (g < EPSILON*fabs(d[i]))
116 && (g < EPSILON*fabs(d[j])))
124 if (g < EPSILON*fabs(h))
129 t = 1.0 / (fabs(theta) + sqrt(1.0 + theta * theta));
214 sum += fabs(mat[i][j]);
matrix_i.c 114 if ((temp = (double) fabs(mat[ii][jj])) > big) big = temp;
140 if ((dumm = (double)(vv[ii] * fabs(sum))) >= big)
163 if (fabs(mat[jj][jj]) <= SIGNIFICANT) mat[jj][jj] = (double)TINY;
  /external/stlport/stlport/stl/
_cmath.h 345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
369 _STLP_DMATH_INLINE(fabs)
390 # if defined (fabs)
391 inline double __stlp_fabs(double __x) { return fabs(__x); }
392 # undef fabs macro
393 inline double fabs(double __x) { return __stlp_fabs(__x); } function
425 { return ::fabs(__x); }
427 _STLP_DEF_MATH_INLINE(abs, fabs)
440 _STLP_DEF_MATH_INLINE(fabs, fabs)
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
369 _STLP_DMATH_INLINE(fabs)
390 # if defined (fabs)
391 inline double __stlp_fabs(double __x) { return fabs(__x); }
392 # undef fabs macro
393 inline double fabs(double __x) { return __stlp_fabs(__x); } function
425 { return ::fabs(__x); }
427 _STLP_DEF_MATH_INLINE(abs, fabs)
440 _STLP_DEF_MATH_INLINE(fabs, fabs)
    [all...]
  /external/webkit/WebCore/platform/android/
GeolocationServiceAndroid.cpp 171 double delta = fabs(position1->coords()->latitude() - position2->coords()->latitude())
172 + fabs(position1->coords()->longitude() - position2->coords()->longitude());
  /cts/apps/CtsVerifier/jni/audioquality/
CompareSpectra.cpp 168 if (fabs(val) > fabs(*maxDeviation)) {

Completed in 1052 milliseconds

1 2 3 4 5 6