Lines Matching defs:x
49 #define __has_attribute(x) 0 argument
55 #define __has_feature(x) 0 argument
58 #define __has_include(x) 0 argument
61 #define __has_builtin(x) 0 argument
149 #define __CONCAT1(x,y) x ## y argument
150 #define __CONCAT(x,y) __CONCAT1(x,y) argument
151 #define __STRING(x) #x /* stringify without expanding x */ argument
152 #define __XSTRING(x) __STRING(x) /* expand x, then stringify */ argument
167 #define __CONCAT(x,y) x/**/y argument
168 #define __STRING(x) "x" argument
219 #define __aligned(x) __attribute__((__aligned__(x))) argument
220 #define __section(x) __attribute__((__section__(x))) argument
223 #define __alloc_size(x) __attribute__((__alloc_size__(x))) argument
224 #define __alloc_size2(n, x) __attribute__((__alloc_size__(n, x))) argument
226 #define __alloc_size(x) argument
227 #define __alloc_size2(n, x) argument
230 #define __alloc_align(x) __attribute__((__alloc_align__(x))) argument
232 #define __alloc_align(x) argument
236 #define __alignof(x) __offsetof(struct { char __a; x __b; }, __b) argument
248 #define _Alignas(x) alignas(x) argument
251 #define _Alignas(x) __aligned(x) argument
256 #define _Alignof(x) alignof(x) argument
258 #define _Alignof(x) __alignof(x) argument
279 #define _Static_assert(x, y) static_assert(x, y) argument
283 #define _Static_assert(x, y) __Static_assert(x, __COUNTER__) argument
284 #define __Static_assert(x, y) ___Static_assert(x, y) argument
285 #define ___Static_assert(x, y) typedef char __assert_ ## y[(x) ? 1 : -1] \ argument
288 #define _Static_assert(x, y) struct __hack argument
337 #define __min_size(x) static (x) argument
339 #define __min_size(x) (x) argument
489 #define __containerof(x, s, m) ({ \ argument
494 #define __containerof(x, s, m) \ argument
839 #define __lock_annotate(x) __attribute__((x)) argument
841 #define __lock_annotate(x) argument
900 #define __guarded_by(x) __lock_annotate(guarded_by(x)) argument
901 #define __pt_guarded_by(x) __lock_annotate(pt_guarded_by(x)) argument
906 #define __builtin_is_aligned(x, align) \ argument
910 #define __builtin_align_up(x, align) \ argument
914 #define __builtin_align_down(x, align) \ argument
918 #define __align_up(x, y) __builtin_align_up(x, y) argument
919 #define __align_down(x, y) __builtin_align_down(x, y) argument
920 #define __is_aligned(x, y) __builtin_is_aligned(x, y) argument