/bionic/libm/man/ |
fabs.3 | 4 .\" @(#)fabs.3 5.1 (Berkeley) 5/2/91 33 .\" from: @(#)fabs.3 5.1 (Berkeley) 5/2/91 34 .\" $FreeBSD: src/lib/msun/man/fabs.3,v 1.11 2004/07/01 18:20:57 ru Exp $ 37 .Dt FABS 3 40 .Nm fabs , 49 .Fn fabs "double x" 56 .Fn fabs , 64 .Fn fabs , 79 .Fn fabs
|
ceil.3 | 65 .Xr fabs 3 ,
|
copysign.3 | 65 .Xr fabs 3 ,
|
/external/opencore/codecs_v2/audio/sbc/enc/src/ |
scalefactors.cpp | 44 while (tmp2 <= (UWord32)(fabs(sbc->sb_sample[blk][0][sb]) >> 15)) 49 while (tmp2 <= (UWord32)(fabs(sbc->sb_sample[blk+1][0][sb]) >> 15)) 54 while (tmp2 <= (UWord32)(fabs(sbc->sb_sample[blk+2][0][sb]) >> 15)) 59 while (tmp2 <= (UWord32)(fabs(sbc->sb_sample[blk+3][0][sb]) >> 15)) 83 while (tmp2 <= (UWord32)(fabs(sbc->sb_sample[blk][0][sb]) >> 15)) 88 while (tmp2 <= (UWord32)(fabs(sbc->sb_sample[blk+1][0][sb]) >> 15)) 93 while (tmp2 <= (UWord32)(fabs(sbc->sb_sample[blk+2][0][sb]) >> 15)) 98 while (tmp2 <= (UWord32)(fabs(sbc->sb_sample[blk+3][0][sb]) >> 15)) 103 while (tmp4 <= (UWord32)(fabs(sbc->sb_sample[blk][1][sb]) >> 15)) 108 while (tmp4 <= (UWord32)(fabs(sbc->sb_sample[blk+1][1][sb]) >> 15) [all...] |
/bionic/libm/src/ |
s_fabs.c | 18 * fabs(x) returns the absolute value of x. 25 fabs(double x) function
|
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)));
|
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));
|
e_remainder.c | 56 x = fabs(x); 57 p = fabs(p);
|
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);
|
/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/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/config/ |
_como.h | 97 # define fabsl fabs 129 # define fabsf fabs 130 # define fabsl fabs 169 # define fabsl fabs
|
/frameworks/base/libs/rs/scriptc/ |
rs_math.rsh | 100 extern float __attribute__((overloadable)) fabs(float); 101 extern float2 __attribute__((overloadable)) fabs(float2); 102 extern float3 __attribute__((overloadable)) fabs(float3); 103 extern float4 __attribute__((overloadable)) fabs(float4); 104 extern float8 __attribute__((overloadable)) fabs(float8); 105 extern float16 __attribute__((overloadable)) fabs(float16);
|
/bionic/libstdc++/include/ |
cmath | 66 using ::fabs;
|
/external/bluetooth/bluez/sbc/ |
sbc_math.h | 26 #define fabs(x) ((x) < 0 ? -(x) : (x)) macro
|
/ndk/build/platforms/android-5/arch-x86/usr/include/ |
cmath | 66 using ::fabs;
|
/ndk/build/platforms/android-8/arch-x86/usr/include/ |
cmath | 66 using ::fabs;
|
/packages/inputmethods/PinyinIME/jni/share/ |
ngram.cpp | 38 // return fabs(freq - code); 39 return freq * fabs(log(freq) - log(code)); 120 (delta == 0 || fabs(delta_last - delta)/fabs(delta) < 0.000000001))
|
/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...] |
/external/webkit/JavaScriptCore/runtime/ |
NumberPrototype.cpp | 255 if (fabs(n / tenToTheF - x) >= fabs((n + 1) / tenToTheF - x)) 335 double logx = floor(log10(fabs(x))); 341 if (fabs(fx - x) < fabs(cx - x)) 421 if (fabs((n + 1.0) * tens - x) <= fabs(n * tens - x))
|
/external/icu4c/test/intltest/ |
itrbnfrt.cpp | 15 #include <math.h> // fabs 288 if (fabs(i) < 5000) 290 else if (fabs(i) < 500000)
|
/external/stlport/test/unit/ |
cmath_test.cpp | 57 CPPUNIT_CHECK( are_equals(std::fabs(float_val), -float_val) ); 58 CPPUNIT_CHECK( are_equals(std::fabs(double_val), -double_val) ); 60 CPPUNIT_CHECK( are_equals(std::fabs(long_double_val), -long_double_val) );
|