Lines Matching defs:x

49 #define	__has_attribute(x)	0
55 #define __has_feature(x) 0
58 #define __has_include(x) 0
61 #define __has_builtin(x) 0
149 #define __CONCAT1(x,y) x ## y
150 #define __CONCAT(x,y) __CONCAT1(x,y)
151 #define __STRING(x) #x /* stringify without expanding x */
152 #define __XSTRING(x) __STRING(x) /* expand x, then stringify */
167 #define __CONCAT(x,y) x/**/y
168 #define __STRING(x) "x"
219 #define __aligned(x) __attribute__((__aligned__(x)))
220 #define __section(x) __attribute__((__section__(x)))
223 #define __alloc_size(x) __attribute__((__alloc_size__(x)))
224 #define __alloc_size2(n, x) __attribute__((__alloc_size__(n, x)))
226 #define __alloc_size(x)
227 #define __alloc_size2(n, x)
230 #define __alloc_align(x) __attribute__((__alloc_align__(x)))
232 #define __alloc_align(x)
236 #define __alignof(x) __offsetof(struct { char __a; x __b; }, __b)
248 #define _Alignas(x) alignas(x)
251 #define _Alignas(x) __aligned(x)
256 #define _Alignof(x) alignof(x)
258 #define _Alignof(x) __alignof(x)
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
337 #define __min_size(x) static (x)
339 #define __min_size(x) (x)
483 * Given the pointer x to the member m of the struct s, return
485 * assign pointer x to a local variable, to check that its type is
489 #define __containerof(x, s, m) ({ \
490 const volatile __typeof(((s *)0)->m) *__x = (x); \
494 #define __containerof(x, s, m) \
495 __DEQUALIFY(s *, (const volatile char *)(x) - __offsetof(s, m))
839 #define __lock_annotate(x) __attribute__((x))
841 #define __lock_annotate(x)
900 #define __guarded_by(x) __lock_annotate(guarded_by(x))
901 #define __pt_guarded_by(x) __lock_annotate(pt_guarded_by(x))
906 #define __builtin_is_aligned(x, align) \
907 (((__uintptr_t)x & ((align) - 1)) == 0)
910 #define __builtin_align_up(x, align) \
911 ((__typeof__(x))(((__uintptr_t)(x)+((align)-1))&(~((align)-1))))
914 #define __builtin_align_down(x, align) \
915 ((__typeof__(x))((x)&(~((align)-1))))
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)