Searched defs:ABS (Results 1 – 6 of 6) sorted by relevance
42 #define ABS(X) ((X) < 0 ? (-1 * (X)) : (X)) macro
227 #define ABS(x) ((x < 0) ? (-x) : (x)) macro
31 #define ABS(X) ((X) < 0 ? (-1 * (X)) : (X)) macro
34 #define ABS(x) ((x) < 0 ? (-x) : (x)) macro
94 #define ABS(symbol,value) \ macro
49 static inline int ABS(int x) { return x >= 0 ? x : -x; } in ABS() function