/external/clang/test/Sema/ |
alignas.c | 14 _Static_assert(__alignof(align_big) == __alignof(int), "k's alignment is wrong"); variable 15 _Static_assert(__alignof(align_small) == 1, "j's alignment is wrong"); 16 _Static_assert(__alignof(align_multiple) == 8, "l's alignment is wrong"); 17 _Static_assert(__alignof(struct align_member) == 8, "quuux's alignment is wrong"); 19 _Static_assert(__alignof(align_typedef) == 8, "typedef's alignment is wrong");
|
pragma-align-mac68k.c | 10 extern int a0_0[__alignof(v2f_t) == 8 ? 1 : -1]; 11 extern int a0_1[__alignof(v4f_t) == 16 ? 1 : -1]; 20 extern int a1_3[__alignof(struct s1) == 2 ? 1 : -1]; 29 extern int a2_3[__alignof(struct s2) == 2 ? 1 : -1]; 38 extern int a3_3[__alignof(struct s3) == 2 ? 1 : -1]; 47 extern int a4_3[__alignof(struct s4) == 2 ? 1 : -1]; 54 extern int a5_1[__alignof(struct s5) == 2 ? 1 : -1]; 61 extern int a6_1[__alignof(struct s6) == 2 ? 1 : -1]; 68 extern int a7_1[__alignof(struct s7) == 2 ? 1 : -1]; 75 extern int a8_1[__alignof(struct s8) == 2 ? 1 : -1] [all...] |
struct-packed-align.c | 12 extern int a2[__alignof(struct s) == 4 ? 1 : -1]; 22 extern int b2[__alignof(struct packed_s) == 1 ? 1 : -1]; 30 extern int c2[__alignof(struct fas) == 4 ? 1 : -1]; 38 extern int d2[__alignof(struct packed_fas) == 1 ? 1 : -1]; 46 extern int d2_2[__alignof(struct packed_after_fas) == 1 ? 1 : -1]; 55 extern int e2[__alignof(struct as1) == 8 ? 1 : -1]; 63 extern int e2_2[__alignof(struct as1_2) == 16 ? 1 : -1]; 71 extern int f2[__alignof(struct as2) == 8 ? 1 : -1]; 80 extern int g2[__alignof(struct as3) == 8 ? 1 : -1]; 92 extern int h2[__alignof(union au4) == 1 ? 1 : -1] [all...] |
arm-layout.c | 49 check(s4_align, __alignof(struct s4) == 4); 52 check(s4_align, __alignof(struct s4) == 1);
|
bitfield-layout.c | 4 #define CHECK_ALIGN(kind, name, size) extern int name##2[__alignof(kind name) == size ? 1 : -1];
|
exprs.c | 97 R = __alignof(P->x); // expected-error {{invalid application of '__alignof' to bit-field}} 98 R = __alignof(P->y); // ok.
|
/external/clang/test/Driver/ |
le32-unknown-nacl.cpp | 14 int align_c = __alignof(char); 17 int align_s = __alignof(short); 20 int align_i = __alignof(int); 23 int align_l = __alignof(long); 26 int align_ll = __alignof(long long); 29 int align_p = __alignof(void*); 32 int align_f = __alignof(float); 35 int align_d = __alignof(double); 38 int align_ld = __alignof(long double); 41 int align_vl = __alignof(va_list) [all...] |
/external/clang/test/CodeGen/ |
packed-structure.c | 16 int s0_align_x = __alignof(((struct s0*)0)->x); 17 int s0_align_y = __alignof(((struct s0*)0)->y); 18 int s0_align = __alignof(struct s0); 46 int s1_align_x = __alignof(((struct s1*)0)->x); 47 int s1_align_y = __alignof(((struct s1*)0)->y); 48 int s1_align = __alignof(struct s1); 74 int s2_align_x = __alignof(((struct s2*)0)->x); 75 int s2_align_y = __alignof(((struct s2*)0)->y); 76 int s2_align = __alignof(struct s2); 95 int s3_1 = __alignof(((struct s3*) 0)->anInt) [all...] |
packed-arrays.c | 27 int align0 = __alignof(struct s0); 29 int align1 = __alignof(struct s1); 31 int align2 = __alignof(struct s2); 33 int align3 = __alignof(struct s3); 36 int align0_x = __alignof(((struct s0*) 0)->x); 39 int align1_x = __alignof(((struct s1*) 0)->x); 41 int align2_x = __alignof(((struct s2*) 0)->x); 43 int align3_x = __alignof(((struct s3*) 0)->x); 46 int align0_x0 = __alignof(((struct s0*) 0)->x[0]); 48 int align1_x0 = __alignof(((struct s1*) 0)->x[0]) [all...] |
/external/clang/test/SemaCXX/ |
bitfield-layout.cpp | 4 #define CHECK_ALIGN(name, size) extern int name##2[__alignof(name) == size ? 1 : -1];
|
conversion.cpp | 40 return __alignof(x == y);
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/ |
p2.cpp | 31 (void)__alignof(auto(*)()->void);
|
p5.cpp | 44 (void)__alignof(auto); // expected-error{{'auto' not allowed here}}
|
/external/webkit/Source/JavaScriptCore/wtf/ |
Alignment.h | 30 #define WTF_ALIGN_OF(type) __alignof(type)
|
/external/elfutils/libdw/ |
libdwP.h | 262 size_t _padding = ((__alignof (type) \ 263 - ((uintptr_t) _result & (__alignof (type) - 1))) \ 264 & (__alignof (type) - 1)); \
|
/external/chromium/third_party/libjingle/overrides/talk/base/ |
basictypes.h | 54 #define alignof(t) __alignof(t)
|
/external/clang/test/SemaTemplate/ |
fun-template-def.cpp | 44 dummy d3 = __alignof(u1); // expected-error {{no viable conversion}}
|
/external/chromium/third_party/libjingle/source/talk/base/ |
basictypes.h | 98 #define alignof(t) __alignof(t)
|
/external/webkit/Source/WebKit2/Platform/CoreIPC/ |
ArgumentDecoder.h | 84 return bufferIsLargeEnoughToContain(__alignof(T), numElements * sizeof(T));
|
/external/llvm/lib/ExecutionEngine/JIT/ |
JITMemoryManager.cpp | 217 unsigned HeaderAlign = __alignof(FreeRangeHeader);
|