Searched defs:s0 (Results 1 - 25 of 188) sorted by relevance

12345678

/external/clang/test/CodeGen/
H A Dx86_32-arguments-realign.c4 // CHECK: define void @f0(%struct.s0* byval align 4)
7 struct s0 { long double a; }; struct
8 void f0(struct s0 a0) {
H A DPR3613-static-decl.c2 // RUN: grep '@g0 = internal global %.truct.s0 { i32 3 }' %t | count 1
4 struct s0 { struct
8 static struct s0 g0;
14 static struct s0 g0 = {3};
H A D2008-07-30-implicit-initialization.c10 struct s0 { struct
15 struct s0 x = {0};
20 struct s0 x[2] = { {0} };
H A Dalignof.c5 struct s0 { struct
9 struct s0 t1_tmp;
H A Dbitfield-assign.c16 struct s0 { struct
25 struct s0 s;
30 struct s0 s;
35 struct s0 s;
40 struct s0 s;
H A Dblocks.c10 typedef struct s0 T;
11 struct s0 { struct
15 // CHECK: define internal void @__f2_block_invoke(%struct.s0* noalias sret {{%.*}}, i8* {{%.*}}, %struct.s0* byval align 4 {{.*}})
16 struct s0 f2(struct s0 a0) {
17 return ^(struct s0 a1){ return a1; }(a0);
H A Dpragma-pack-2.c2 // CHECK-X32: %struct.s0 = type { i64, i64, i32, [12 x i32] }
3 // CHECK-X32: %struct.s1 = type { [15 x i32], %struct.s0 }
6 // CHECK-X64: %struct.s0 = type <{ i64, i64, i32, [12 x i32] }>
7 // CHECK-X64: %struct.s1 = type <{ [15 x i32], %struct.s0 }>
12 struct s0 { struct
21 struct s0 b;
H A Dcleanup-stack.c4 struct s0 { struct
9 static void f0(struct s0 *p) {
17 struct s0 x __attribute__((cleanup(f0))) = { &var, 2 };
18 struct s0 y __attribute__((cleanup(f0))) = { &var, 3 };
20 struct s0 y __attribute__((cleanup(f0))) = { &var, 4 };
/external/clang/test/CodeGenCXX/
H A Daarch64-arguments.cpp4 struct s0 {}; struct
5 void f0(s0 a) {}
/external/clang/test/CodeGenObjC/
H A Dattr-strong.c3 struct s0 { struct
6 struct s0 * __attribute__((objc_gc(strong))) g0;
/external/clang/test/PCH/
H A Dchanged-files.c1 const char *s0 = m0; variable
/external/clang/test/Sema/
H A Dalign-arm-apcs.c4 struct s0 { double f0; int f1; }; struct
5 char chk0[__alignof__(struct s0) == 4 ? 1 : -1];
H A Dfpack-struct.c4 struct s0 { struct
9 int t0[sizeof(struct s0) == EXPECTED_STRUCT_SIZE ?: -1];
H A Dpragma-pack-3.c23 struct s0 { struct
27 int a[sizeof(struct s0) == 3 ? 1 : -1];
H A Dpragma-pack-4.c8 struct s0 { struct
17 struct s0 b;
H A Darm-layout.c7 struct s0 { char field0; double field1; }; struct
9 check(s0_size, sizeof(struct s0) == 16);
11 check(s0_size, sizeof(struct s0) == 12);
H A Dattr-weak.c11 struct __attribute__((weak)) s0 {}; // expected-warning {{'weak' attribute only applies to variables and functions}} struct
H A Dpragma-align-packed.c5 struct s0 { struct
9 extern int a[sizeof(struct s0) == 5 ? 1 : -1];
H A Dpragma-pack-5.c9 struct s0 { struct
14 extern int check[sizeof(struct s0) == 6 ? 1 : -1];
H A Dpragma-pack-and-options-align.c6 struct s0 { struct
10 extern int a[sizeof(struct s0) == 5 ? 1 : -1];
H A Dwarn-unused-variables.c3 struct s0 { struct
/external/clang/test/SemaCXX/
H A Dstatic-cast-complete-type.cpp9 S<int> s0 = static_cast<S<int> >(0); local
H A Dvalue-dependent-exprs.cpp13 struct s0 { struct in class:C0
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
H A Dp10.cpp7 struct s0 { struct
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_shadow_test.cc68 uptr s0 = MemToShadow((uptr)&data[0]); local
69 CHECK_EQ(s0 % kShadowSize, 0);
71 CHECK_EQ(s0, MemToShadow((uptr)&data[i]));
73 CHECK_EQ(s0 + kShadowSize*kShadowCnt, MemToShadow((uptr)&data[i]));
75 CHECK_EQ(s0 + 2*kShadowSize*kShadowCnt, MemToShadow((uptr)&data[i]));

Completed in 351 milliseconds

12345678