HomeSort by relevance Sort by last modified time
    Searched refs:S3 (Results 126 - 150 of 325) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/clang/test/OpenMP/
target_parallel_for_simd_reduction_messages.cpp 27 class S3 {
32 S3() : a(0) {}
33 S3(const S3 &s3) : a(s3.a) {}
34 S3 operator+(const S3 &arg1) { return arg1; }
36 int operator+(const S3 &arg1, const S3 &arg2) { return 5;
    [all...]
teams_reduction_messages.cpp 27 class S3 {
32 S3() : a(0) {}
33 S3(const S3 &s3) : a(s3.a) {}
34 S3 operator+(const S3 &arg1) { return arg1; }
36 int operator+(const S3 &arg1, const S3 &arg2) { return 5;
    [all...]
target_data_use_device_ptr_messages.cpp 92 class S3 {
95 S3():a(0) { }
96 S3(S3 &s3):a(s3.a) { }
98 const S3 c;
99 const S3 ca[5];
116 S3 h;
target_is_device_ptr_messages.cpp 100 class S3 {
103 S3():a(0) { }
104 S3(S3 &s3):a(s3.a) { }
106 const S3 c;
107 const S3 ca[5];
124 S3 h;
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_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...]
distribute_parallel_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...]
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_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_firstprivate_messages.cpp 24 class S3 {
26 S3 &operator=(const S3 &s3);
29 S3() : a(0) {} // expected-note 2 {{candidate constructor not viable: requires 0 arguments, but 1 was provided}}
30 S3(S3 &s3) : a(s3.a) {} // expected-note 2 {{candidate constructor not viable: 1st argument ('const S3') would lose const qualifier}
    [all...]
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_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...]
target_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...]
target_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...]
taskloop_firstprivate_messages.cpp 24 class S3 {
26 S3 &operator=(const S3 &s3);
29 S3() : a(0) {} // expected-note 2 {{candidate constructor not viable: requires 0 arguments, but 1 was provided}}
30 S3(S3 &s3) : a(s3.a) {} // expected-note 2 {{candidate constructor not viable: 1st argument ('const S3') would lose const qualifier}
    [all...]
taskloop_simd_firstprivate_messages.cpp 24 class S3 {
26 S3 &operator=(const S3 &s3);
29 S3() : a(0) {} // expected-note 2 {{candidate constructor not viable: requires 0 arguments, but 1 was provided}}
30 S3(S3 &s3) : a(s3.a) {} // expected-note 2 {{candidate constructor not viable: 1st argument ('const S3') would lose const qualifier}
    [all...]
taskloop_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...]
  /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/SemaCXX/
empty-class-layout.cpp 50 struct S3 {
54 struct S4 : Empty, S3 {
58 struct S5 : S3, Empty {};
constructor-initializer.cpp 276 struct S3 {
278 S3() : s1(s1.bar) {}
303 struct S3 { struct { int n; }; S3() : n(n) {} }; // expected-warning {{field 'n' is uninitialized when used here}}
  /art/runtime/arch/arm/
registers_arm.h 61 S3 = 3,
  /external/clang/test/ASTMerge/Inputs/
struct1.c 24 struct S3 { int i; float f; double d; } x3;
struct2.c 21 struct S3 { int i; float f; } x3;
  /external/clang/test/CXX/class/class.mem/
p1.cpp 30 struct S3
  /external/llvm/include/llvm/ADT/
StringSwitch.h 119 const char (&S2)[N2], const char (&S3)[N3],
125 (N3-1 == Str.size() && std::memcmp(S3, Str.data(), N3-1) == 0))) {
135 const char (&S2)[N2], const char (&S3)[N3],
141 (N3-1 == Str.size() && std::memcmp(S3, Str.data(), N3-1) == 0) ||

Completed in 582 milliseconds

1 2 3 4 56 7 8 91011>>