Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/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
/ndk/sources/cxx-stl/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