Lines Matching refs:a
20 #define MAX(a, b) \ argument
21 (__extension__({ __typeof__(a) _a = (a); \
25 #define MIN(a, b) \ argument
26 (__extension__({ __typeof__(a) _a = (a); \
30 #define MAX(a, b) (((a) > (b)) ? (a) : (b)) argument
31 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) argument
40 #define MAX_UNSAFE(a, b) (((a) > (b)) ? (a) : (b)) argument
41 #define MIN_UNSAFE(a, b) (((a) < (b)) ? (a) : (b)) argument
98 #define IS_ALIGNED(x, a) (((x) & ((a) - 1)) == 0) argument
150 #define ADD_OVERFLOW(a, b, res) __compiler_add_overflow((a), (b), (res)) argument
151 #define SUB_OVERFLOW(a, b, res) __compiler_sub_overflow((a), (b), (res)) argument
152 #define MUL_OVERFLOW(a, b, res) __compiler_mul_overflow((a), (b), (res)) argument
155 #define CMP_TRILEAN(a, b) \ argument
157 __typeof__(a) _a = (a); \