Lines Matching refs:aligned
3 int x __attribute__((aligned(3))); // expected-error {{requested alignment is not a power of 2}}
4 int y __attribute__((aligned(1 << 29))); // expected-error {{requested alignment must be 268435456 …
7 int y __attribute__((aligned(1 << 28)));
10 short g0[3] __attribute__((aligned));
14 typedef char ueber_aligned_char __attribute__((aligned(8)));
27 typedef long long __attribute__((aligned(1))) underaligned_longlong;
30 typedef long long __attribute__((aligned(1))) underaligned_complex_longlong;
34 int b __attribute__((aligned(2)));
37 struct C { int member __attribute__((aligned(2))); } c;
41 struct D { int member __attribute__((aligned(2))) __attribute__((packed)); } d;
45 struct E { int member __attribute__((aligned(2))); } __attribute__((packed));
50 typedef char overaligned_char __attribute__((aligned(16)));
52 typedef char array_with_align_attr[11] __attribute__((aligned(16)));