Lines Matching defs:y
149 #define __CONCAT1(x,y) x ## y
150 #define __CONCAT(x,y) __CONCAT1(x,y)
167 #define __CONCAT(x,y) x/**/y
279 #define _Static_assert(x, y) static_assert(x, y)
283 #define _Static_assert(x, y) __Static_assert(x, __COUNTER__)
284 #define __Static_assert(x, y) ___Static_assert(x, y)
285 #define ___Static_assert(x, y) typedef char __assert_ ## y[(x) ? 1 : -1] \
288 #define _Static_assert(x, y) struct __hack
918 #define __align_up(x, y) __builtin_align_up(x, y)
919 #define __align_down(x, y) __builtin_align_down(x, y)
920 #define __is_aligned(x, y) __builtin_is_aligned(x, y)