Searched defs:MIN2 (Results 1 - 2 of 2) sorted by relevance
| /openjdk7/hotspot/agent/src/os/solaris/proc/ |
| H A D | saproc.cpp | 1114 #define MIN2(x, y) (((x) < (y))? (x) : (y)) macro 1117 jlong bytesToRead = MIN2(numBytes, usedSize - diff);
|
| /openjdk7/hotspot/src/share/vm/utilities/ |
| H A D | globalDefinitions.hpp | 970 template<class T> inline T MIN2(T a, T b) { return (a < b) ? a : b; } function 972 template<class T> inline T MIN3(T a, T b, T c) { return MIN2(MIN2(a, b), c); } 974 template<class T> inline T MIN4(T a, T b, T c, T d) { return MIN2(MIN3(a, b, c), d); }
|
Completed in 31 milliseconds