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

1 2 3 45 6 7 8 910

  /external/clang/test/OpenMP/
taskloop_simd_private_messages.cpp 20 class S3 {
24 S3() : a(0) {}
26 const S3 ca[5];
90 S3 h;
teams_firstprivate_messages.cpp 24 class S3 {
28 S3() : a(0) {}
29 S3(const S3 &s3) : a(s3.a) {}
31 const S3 c;
32 const S3 ca[5];
49 S3 h;
teams_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}}
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_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...]
distribute_parallel_for_simd_aligned_messages.cpp 112 class S3 {
115 S3():a(0) { }
117 const S3 ca[5];
131 S3 h; // expected-note 2 {{'h' defined here}}
194 #pragma omp distribute parallel for simd aligned(h) // expected-error {{argument of aligned clause should be array, pointer, reference to array or reference to pointer, not 'S3'}}
298 #pragma omp distribute parallel for simd aligned(h) // expected-error {{argument of aligned clause should be array, pointer, reference to array or reference to pointer, not 'S3'}}
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_parallel_for_simd_linear_messages.cpp 108 class S3 {
111 S3():a(0) { }
113 const S3 ca[5];
127 S3 h;
distribute_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...]
distribute_simd_aligned_messages.cpp 112 class S3 {
115 S3():a(0) { }
117 const S3 ca[5];
131 S3 h; // expected-note 2 {{'h' defined here}}
194 #pragma omp distribute simd aligned(h) // expected-error {{argument of aligned clause should be array, pointer, reference to array or reference to pointer, not 'S3'}}
298 #pragma omp distribute simd aligned(h) // expected-error {{argument of aligned clause should be array, pointer, reference to array or reference to pointer, not 'S3'}}
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...]
distribute_simd_linear_messages.cpp 108 class S3 {
111 S3():a(0) { }
113 const S3 ca[5];
127 S3 h;
  /external/clang/test/SemaCXX/
alias-template.cpp 63 template<typename...T> struct S3 { // expected-note {{template parameter is declared here}}
cxx11-crashes.cpp 21 struct S3; // expected-note {{forward declaration}}
24 S3 x; // expected-error {{incomplete type}}
28 struct S3 {
openmp_default_simd_align.cpp 28 // s2-within-S3 and thus require 'S3' to be complete. If we start
31 struct S3 {
37 static const int test11 = __builtin_omp_required_simd_align(decltype(S3::s2.x));
38 static const int test12 = __builtin_omp_required_simd_align(decltype(S3::s2.s)); // expected-error {{invalid application of '__builtin_omp_required_simd_align' to an incomplete type 'S1'}}
42 // Same reasoning as S3.
warn-overloaded-virtual.cpp 29 struct S3 : public B3 {
  /external/guava/guava-tests/benchmark/com/google/common/base/
ObjectsBenchmark.java 35 private static final String S3 = "Lowly laundry lefties";
59 dummy += Objects.hashCode(S0, S1, S2, S3);
67 dummy += Objects.hashCode(S0, S1, S2, S3, S4);
76 dummy += Objects.hashCode(D0, I1, S3, I2, S0);
  /external/swiftshader/third_party/subzero/unittest/AssemblerX8664/
LowLevel.cpp     [all...]
  /prebuilts/go/darwin-x86/test/interface/
struct.go 83 type S3 struct { i, j, k, l int64 }
84 func (p S3) Get() int64 { return p.l }
85 func (p S3) Put(i int64) { p.l = i }
88 s := S3{1, 2, 3, 4}
96 s := S3{1, 2, 3, 4}
104 s := &S3{1, 2, 3, 4}
  /prebuilts/go/linux-x86/test/interface/
struct.go 83 type S3 struct { i, j, k, l int64 }
84 func (p S3) Get() int64 { return p.l }
85 func (p S3) Put(i int64) { p.l = i }
88 s := S3{1, 2, 3, 4}
96 s := S3{1, 2, 3, 4}
104 s := &S3{1, 2, 3, 4}
  /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/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
p2.cpp 29 struct S3 {
30 S3() = default;
31 S3(const S3&) = default;
32 S3(S3&&) = default;
33 constexpr S3(int n) : n(n) {}
36 constexpr S3 s3a = S3(0);
37 constexpr S3 s3b = s3a
    [all...]
  /external/clang/test/CodeGen/
malign-double.cpp 7 /* Structs S1, S2, S3, S4, and union U5 are taken from Intel, "IA-64
45 struct S3 {
50 unsigned S3_align = __alignof(struct S3);
51 unsigned S3_size = sizeof(struct S3);
55 unsigned S3_c_offset = (unsigned) &((struct S3*) 0)->c;
56 unsigned S3_s_offset = (unsigned) &((struct S3*) 0)->s;

Completed in 1128 milliseconds

1 2 3 45 6 7 8 910