Searched defs:MAX (Results 1 – 6 of 6) sorted by relevance
5 #define MAX(x, y) ((x) > (y) ? (x) : (y)) macro
34 #define MAX(a, b) (((a) > (b)) ? (a) : (b)) macro
48 #define MAX(a, b) (((a) > (b)) ? (a) : (b)) macro
45 #define MAX(x, y) ((x) > (y) ? (x) : (y)) macro
31 #define MAX(a, b) ((a) < (b) ? (b) : (a)) macro
56 #define MAX(x, y) ({\ macro