Searched refs:__cmp (Results 1 – 1 of 1) sorted by relevance
/linux/include/linux/ |
H A D | minmax.h | 83 #define __cmp(op, x, y) ((x) __cmp_op_##op (y) ? (x) : (y)) 86 ({ type ux = (x); type uy = (y); __cmp(op, ux, uy); }) 95 __cmp(op, ux, uy); }) 135 __cmp(op, ux, __cmp(op, uy, uz)); }) 314 #define MIN(a, b) __cmp(min, a, b) 315 #define MAX(a, b) __cmp(max, a, b) 316 #define MIN_T(type, a, b) __cmp(min, (type)(a), (type)(b)) 317 #define MAX_T(type, a, b) __cmp(max, (type)(a), (type)(b)) 90 #define __cmp(op, x, y) ((x) __cmp_ global() macro
|