Searched defs:MIN (Results 1 – 9 of 9) sorted by relevance
46 #define MIN( a, b ) ( ( ( a ) < ( b ) ) ? ( a ) : ( b ) ) macro
105 #define MIN( a, b ) (((a) < (b)) ? (a) : (b)) macro
10 #define MIN(n,m) (((n) < (m)) ? (n) : (m)) macro
67 #define MIN( x, y ) (((x)<(y))?(x):(y)) macro
91 #define MIN( x, y ) (((x)<(y))?(x):(y)) macro
78 #define MIN( x, y ) (((x)<(y))?(x):(y)) macro
37 #define MIN(a, b) ( (a) < (b) ? (a) : (b) ) macro
97 #define MIN(x, y) ((x) < (y) ? (x) : (y)) macro
167 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro