Home
last modified time | relevance | path

Searched defs:abs (Results 1 – 25 of 27) sorted by relevance

12

/external/stlport/stlport/stl/
D_cstdlib.h113 inline int abs(int __x) { return _STLP_VENDOR_CSTD::abs(__x); } in abs() function
131 inline long abs(long __x) { return _STLP_VENDOR_CSTD::labs(__x); } in abs() function
151 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return _STLP_VENDOR_CSTD::llabs(__x); } in abs() function
154 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return ::llabs(__x); } in abs() function
158 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return __x < 0 ? -__x : __x; } in abs() function
D_cmath.h424 inline double abs(double __x) in abs() function
427 _STLP_DEF_MATH_INLINE(abs, fabs) in _STLP_DEF_MATH_INLINE() argument
D_valarray.h892 inline valarray<_Tp> abs(const valarray<_Tp>& __x) { in abs() function
/external/chromium/android/
Dprefix.h50 inline size_t abs(size_t x) { return x; } in abs() function
/external/opencv/cxcore/src/
D_cxcore.h161 inline double abs(CvComplex32f a) in abs() function
229 inline double abs(CvComplex64f a) in abs() function
/external/stlport/src/
Dcomplex.cpp40 _STLP_DECLSPEC float _STLP_CALL abs(const complex<float>& __z) in abs() function
43 _STLP_DECLSPEC double _STLP_CALL abs(const complex<double>& __z) in abs() function
48 _STLP_DECLSPEC long double _STLP_CALL abs(const complex<long double>& __z) in abs() function
/external/skia/src/core/
DSkFloat.h30 void abs() { fPacked = Abs(fPacked); } in abs() function
DSk64.cpp129 void Sk64::abs() in abs() function in Sk64
/external/jmonkeyengine/engine/src/android/jme3tools/android/
DFixed.java351 public static int abs(int n) { in abs() method in Fixed
/external/jmonkeyengine/engine/src/core/com/jme3/math/
DEigen3f.java149 float abs = FastMath.abs(mat.m01); in scaleMatrix() local
DFastMath.java561 public static float abs(float fValue) { in abs() method in FastMath
/external/webkit/Source/WebCore/platform/mac/
DScrollAnimatorMac.mm60 static NSSize abs(NSSize size) function
/external/webkit/Source/JavaScriptCore/wtf/
DMathExtras.h137 inline long long abs(long long num) { return _abs64(num); } in abs() function
DAVLTree.h474 abs_plus_root abs; variable
/external/kernel-headers/original/linux/
Dkernel.h85 #define abs(x) ({ \ macro
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/
DShaderUtils.java102 public static final float abs(final float x) { in abs() method in ShaderUtils
/external/tcpdump/
Dprint-icmp6.c62 #define abs(a) ((0 < (a)) ? (a) : -(a)) macro
/external/qemu/target-arm/
Dhelper.c569 uint32_t HELPER(abs)(uint32_t x) in HELPER() argument
2722 float32 VFP_HELPER(abs, s)(float32 a) in VFP_HELPER() argument
2727 float64 VFP_HELPER(abs, d)(float64 a) in VFP_HELPER() argument
Diwmmxt_helper.c83 #define abs(x) (((x) >= 0) ? x : -x) in HELPER() macro
/external/chromium/chrome/common/extensions/docs/examples/api/tabs/inspector/
Djstemplate_compiled.js532 var abs = Math.abs; variable
/external/webkit/Source/WebKit/chromium/tests/
DKURLTest.cpp334 const char abs[] = "http://www.google.com/"; in TEST() local
/external/llvm/include/llvm/ADT/
DAPInt.h1391 APInt abs() const { in abs() function
/external/v8/benchmarks/
Dcrypto.js660 BigInteger.prototype.abs = bnAbs; method in BigInteger
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
Dv8-crypto.js652 BigInteger.prototype.abs = bnAbs; method in BigInteger
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
Dv8-crypto.js652 BigInteger.prototype.abs = bnAbs; method in BigInteger

12