Searched defs:MIN (Results 1 – 4 of 4) sorted by relevance
73 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
60 # define MIN(a,b) (((a) < (b)) ? (a) : (b)) macro
62 #define MIN(x,y) (x < y ? x : y) macro
387 # define MIN(a, b) ((a) < (b) ? (a) : (b)) macro
Completed in 20 milliseconds