Searched defs:MAX (Results 1 – 5 of 5) sorted by relevance
43 #define MAX(x,y) ((x) > (y) ? (x) : (y)) macro
45 #define MAX(a, b) ((a) >= (b) ? (a) : (b)) macro
72 #define MAX(a, b) (((a) > (b)) ? (a) : (b)) macro
63 #define MAX(x,y) (x > y ? x : y) macro
53 #define MAX(a, b) (((a) > (b)) ? (a) : (b)) macro
Completed in 12 milliseconds