HomeSort by relevance Sort by last modified time
    Searched defs:S3 (Results 51 - 75 of 235) sorted by null

1 23 4 5 6 7 8 910

  /external/clang/test/CodeGen/
stdcall-fastcall.c 138 struct S3 {
141 void __attribute__((fastcall)) foo12(struct S3 y, int x);
142 void bar12(struct S3 y, int x) {
  /external/clang/test/CodeGenCXX/
microsoft-abi-dynamic-cast.cpp 131 struct S3 : S2 {};
133 S3 *f(S2 &s) {
135 return dynamic_cast<S3 *>(&s);
137 // CHECK-LABEL: define %"struct.PR25606::S3"* @"\01?f@PR25606@@YAPAUS3@1@AAUS2@1@@Z"(
140 // CHECK: [[BC:%.*]] = bitcast i8* [[CALL]] to %"struct.PR25606::S3"*
142 // CHECK: ret %"struct.PR25606::S3"* [[BC]]
warn-padded-packed.cpp 14 struct S3 {
76 void f(S1*, S2*, S3*, S4*, S5*, S6*, S7*, S8*, S9*, S10*, S11*, S12*, S13*) { }
  /external/clang/test/OpenMP/
distribute_firstprivate_messages.cpp 24 class S3 {
26 S3 &operator=(const S3 &s3);
29 S3() : a(0) {} // expected-note {{candidate constructor not viable: requires 0 arguments, but 1 was provided}}
30 S3(S3 &s3) : a(s3.a) {} // expected-note {{candidate constructor not viable: 1st argument ('const S3') would lose const qualifier}
    [all...]
distribute_parallel_for_firstprivate_messages.cpp 24 class S3 {
26 S3 &operator=(const S3 &s3);
29 S3() : a(0) {}
30 S3(const S3 &s3) : a(s3.a) {}
32 const S3 c
    [all...]
distribute_parallel_for_private_messages.cpp 20 class S3 {
24 S3() : a(0) {}
26 const S3 ca[5];
102 S3 h;
distribute_parallel_for_shared_messages.cpp 14 class S3 {
17 S3():a(0) { }
18 S3(S3 &s3):a(s3.a) { }
20 const S3 c;
21 const S3 ca[5];
38 S3 h;
distribute_parallel_for_simd_firstprivate_messages.cpp 24 class S3 {
26 S3 &operator=(const S3 &s3);
29 S3() : a(0) {}
30 S3(const S3 &s3) : a(s3.a) {}
32 const S3 c
    [all...]
distribute_parallel_for_simd_private_messages.cpp 20 class S3 {
24 S3() : a(0) {}
26 const S3 ca[5];
102 S3 h;
distribute_parallel_for_simd_shared_messages.cpp 14 class S3 {
17 S3():a(0) { }
18 S3(S3 &s3):a(s3.a) { }
20 const S3 c;
21 const S3 ca[5];
38 S3 h;
distribute_simd_firstprivate_messages.cpp 24 class S3 {
26 S3 &operator=(const S3 &s3);
29 S3() : a(0) {}
30 S3(const S3 &s3) : a(s3.a) {}
32 const S3 c
    [all...]
distribute_simd_private_messages.cpp 20 class S3 {
24 S3() : a(0) {}
26 const S3 ca[5];
102 S3 h;
for_private_messages.cpp 20 class S3 {
24 S3() : a(0) {}
26 const S3 ca[5];
90 S3 h;
for_simd_firstprivate_messages.cpp 24 class S3 {
26 S3 &operator=(const S3 &s3);
29 S3() : a(0) {}
30 S3(const S3 &s3) : a(s3.a) {}
32 const S3 c
    [all...]
for_simd_lastprivate_messages.cpp 26 class S3 {
28 S3 &operator=(const S3 &s3); // expected-note 2 {{implicitly declared private here}}
31 S3() : a(0) {}
32 S3(S3 &s3) : a(s3.a) {}
34 const S3 c; // expected-note {{global variable is predetermined as shared}
    [all...]
for_simd_private_messages.cpp 20 class S3 {
24 S3() : a(0) {}
26 const S3 ca[5];
90 S3 h;
parallel_firstprivate_messages.cpp 23 class S3 {
26 S3():a(0) { }
27 S3(const S3 &s3):a(s3.a) { }
29 const S3 c;
30 const S3 ca[5];
47 S3 h;
parallel_for_firstprivate_messages.cpp 24 class S3 {
26 S3 &operator=(const S3 &s3);
29 S3() : a(0) {}
30 S3(const S3 &s3) : a(s3.a) {}
32 const S3 c
    [all...]
parallel_for_lastprivate_messages.cpp 26 class S3 {
28 S3 &operator=(const S3 &s3); // expected-note 2 {{implicitly declared private here}}
31 S3() : a(0) {}
32 S3(S3 &s3) : a(s3.a) {}
34 const S3 c; // expected-note {{global variable is predetermined as shared}
    [all...]
parallel_for_private_messages.cpp 20 class S3 {
24 S3() : a(0) {}
26 const S3 ca[5];
90 S3 h;
parallel_for_simd_firstprivate_messages.cpp 24 class S3 {
26 S3 &operator=(const S3 &s3);
29 S3() : a(0) {}
30 S3(const S3 &s3) : a(s3.a) {}
32 const S3 c
    [all...]
parallel_for_simd_lastprivate_messages.cpp 25 class S3 {
27 S3 &operator=(const S3 &s3); // expected-note 2 {{implicitly declared private here}}
30 S3() : a(0) {}
31 S3(S3 &s3) : a(s3.a) {}
33 const S3 c; // expected-note {{global variable is predetermined as shared}
    [all...]
parallel_for_simd_private_messages.cpp 20 class S3 {
24 S3() : a(0) {}
26 const S3 ca[5];
90 S3 h;
parallel_private_messages.cpp 20 class S3 {
23 S3():a(0) { }
25 const S3 c; // expected-note {{global variable is predetermined as shared}}
26 const S3 ca[5]; // expected-note {{global variable is predetermined as shared}}
parallel_sections_firstprivate_messages.cpp 24 class S3 {
26 S3 &operator=(const S3 &s3);
29 S3() : a(0) {}
30 S3(const S3 &s3) : a(s3.a) {}
32 const S3 c
    [all...]

Completed in 469 milliseconds

1 23 4 5 6 7 8 910