Searched defs:abs (Results 1 – 4 of 4) sorted by relevance
113 inline int abs(int __x) { return _STLP_VENDOR_CSTD::abs(__x); } in abs() function131 inline long abs(long __x) { return _STLP_VENDOR_CSTD::labs(__x); } in abs() function151 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return _STLP_VENDOR_CSTD::llabs(__x); } in abs() function154 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return ::llabs(__x); } in abs() function158 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return __x < 0 ? -__x : __x; } in abs() function
424 inline double abs(double __x) in abs() function427 _STLP_DEF_MATH_INLINE(abs, fabs) in _STLP_DEF_MATH_INLINE() argument
892 inline valarray<_Tp> abs(const valarray<_Tp>& __x) { in abs() function
40 _STLP_DECLSPEC float _STLP_CALL abs(const complex<float>& __z) in abs() function43 _STLP_DECLSPEC double _STLP_CALL abs(const complex<double>& __z) in abs() function48 _STLP_DECLSPEC long double _STLP_CALL abs(const complex<long double>& __z) in abs() function