43#if defined(USE_STL) && !defined(CUSTOM_ABS)
48#define MATH_INLINE inline
70 return std::abs(value);
72 return (value < 0.0L) ? (value * -1.0L) : value;
78 return std::abs(value);
80 return (value < 0.0) ? (value * -1.0) : value;
86 return std::abs(value);
88 return (value < 0.0f) ? (value * -1.0f) : value;
94 return std::abs(value);
96 return (value < 0L) ? (value * -1L) : value;
102 return std::abs(value);
104 return (value < 0) ? (value * -1) : value;
MATH_INLINE int32_t abs(int32_t const value)
MATH_INLINE float32_t fabs(float32_t const value)
This is a application specific file which is used to configure Imt.Base.Core.Math.
float float32_t
32 Bits float variable (float)
double float64_t
64 Bits float variable (double)
long double float128_t
128 Bits float variable (long double) This type may be 64 bit and not 128 bit depending on target pla...