Searched defs:MAX (Results 1 – 9 of 9) sorted by relevance
34 #define MAX(a, b) ((a) > (b) ? (a) : (b)) macro
74 #define MAX(a,b) (((a)>(b))?(a):(b)) macro
308 # define MAX(x,y) (((x) > (y)) ? (x) : (y)) macro
55 #define MAX(a, b) ((a > b) ? a : b) macro
72 #define MAX(a, b) ({ __typeof__ (a) _a = (a); \ macro
63 #define MAX(x,y) (x > y ? x : y) macro
134 # define MAX(a, b) ((a) > (b) ? (a) : (b)) macro
107 #define MAX( a, b ) ( ( ( a ) > ( b ) ) ? ( a ) : ( b ) ) macro
386 # define MAX(a, b) ((a) > (b) ? (a) : (b)) macro
Completed in 30 milliseconds