Searched defs:ABS (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/solaris/native/sun/awt/
H A DX11Color.c63 #define ABS(x) ((x) < 0 ? -(x) : (x)) macro
218 d = ABS(p->r - r);
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11Renderer.c39 #define ABS(n) (((n) < 0) ? -(n) : (n)) macro
298 arcW = ABS(arcW);
299 arcH = ABS(arcH);
705 arcW = ABS(arcW);
706 arcH = ABS(arcH);
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dawt_ImagingLib.c4008 #define ABS(x) ((x) < 0 ? -(x) : (x)) macro
4031 d = ABS(red - r);
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions.hpp976 template<class T> inline T ABS(T x) { return (x > 0) ? x : -x; } function

Completed in 57 milliseconds