Searched defs:MAX (Results 1 – 4 of 4) sorted by relevance
17 #define MAX(x, y) ((x) > (y) ? (x) : (y)) macro
43 #define MAX(x,y) ((x) > (y) ? (x) : (y)) macro
44 #define MAX(x,y) (x > y ? x : y) macro
53 #define MAX(a, b) (((a) > (b)) ? (a) : (b)) macro
Completed in 9 milliseconds