Searched refs:S1 (Results 201 - 225 of 428) sorted by relevance

1234567891011>>

/external/llvm/lib/Target/Mips/
H A DMipsCCState.cpp33 auto Comp = [](const char *S1, const char *S2) { return strcmp(S1, S2) < 0; };
/external/llvm/lib/Transforms/Scalar/
H A DLoopInstSimplify.cpp84 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2; local
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DLoopInstSimplify.cpp72 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2; local
/external/clang/test/OpenMP/
H A Dfor_lastprivate_messages.cpp10 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
11 extern S1 a;
100 #pragma omp for lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
104 #pragma omp for lastprivate(a, b) // expected-error {{lastprivate variable with incomplete type 'S1'}}
194 #pragma omp for lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
198 #pragma omp for lastprivate(a, b, c, d, f) // expected-error {{lastprivate variable with incomplete type 'S1'}} expected-error 3 {{shared variable cannot be lastprivate}}
H A Dfor_linear_messages.cpp70 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
71 extern S1 a;
120 #pragma omp for linear (S1) // expected-error {{'S1' does not refer to a value}}
122 // expected-error@+2 {{linear variable with incomplete type 'S1'}}
186 #pragma omp for linear (S1) // expected-error {{'S1' does not refer to a value}}
188 // expected-error@+2 {{linear variable with incomplete type 'S1'}}
H A Dfor_simd_lastprivate_messages.cpp10 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
11 extern S1 a;
100 #pragma omp for simd lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
104 #pragma omp for simd lastprivate(a, b) // expected-error {{lastprivate variable with incomplete type 'S1'}}
191 #pragma omp for simd lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
195 #pragma omp for simd lastprivate(a, b, c, d, f) // expected-error {{lastprivate variable with incomplete type 'S1'}} expected-error 3 {{shared variable cannot be lastprivate}}
H A Dfor_simd_linear_messages.cpp70 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
71 extern S1 a;
120 #pragma omp for simd linear (S1) // expected-error {{'S1' does not refer to a value}}
122 // expected-error@+2 {{linear variable with incomplete type 'S1'}}
184 #pragma omp for simd linear (S1) // expected-error {{'S1' does not refer to a value}}
186 // expected-error@+2 {{linear variable with incomplete type 'S1'}}
H A Dparallel_for_firstprivate_messages.cpp10 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
11 extern S1 a;
90 #pragma omp parallel for firstprivate(S1) // expected-error {{'S1' does not refer to a value}}
93 #pragma omp parallel for firstprivate(a, b) // expected-error {{firstprivate variable with incomplete type 'S1'}}
175 #pragma omp parallel for firstprivate(S1) // expected-error {{'S1' does not refer to a value}}
178 #pragma omp parallel for firstprivate(a, b, c, d, f) // expected-error {{firstprivate variable with incomplete type 'S1'}}
H A Dparallel_for_lastprivate_messages.cpp10 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
11 extern S1 a;
92 #pragma omp parallel for lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
95 #pragma omp parallel for lastprivate(a, b) // expected-error {{lastprivate variable with incomplete type 'S1'}}
166 #pragma omp parallel for lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
169 #pragma omp parallel for lastprivate(a, b, c, d, f) // expected-error {{lastprivate variable with incomplete type 'S1'}} expected-error 3 {{shared variable cannot be lastprivate}}
H A Dparallel_for_linear_messages.cpp81 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
82 extern S1 a;
143 #pragma omp parallel for linear(S1) // expected-error {{'S1' does not refer to a value}}
146 // expected-error@+2 {{linear variable with incomplete type 'S1'}}
228 #pragma omp parallel for linear(S1) // expected-error {{'S1' does not refer to a value}}
231 // expected-error@+2 {{linear variable with incomplete type 'S1'}}
H A Dparallel_for_simd_aligned_messages.cpp76 struct S1; // expected-note 2 {{declared here}}
77 extern S1 a; // expected-note {{'a' declared here}}
128 #pragma omp parallel for simd aligned (S1) // expected-error {{'S1' does not refer to a value}}
187 #pragma omp parallel for simd aligned (S1) // expected-error {{'S1' does not refer to a value}}
189 // expected-error@+2 {{argument of aligned clause should be array, pointer, reference to array or reference to pointer, not 'S1'}}
H A Dparallel_for_simd_lastprivate_messages.cpp10 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
11 extern S1 a;
91 #pragma omp parallel for simd lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
94 #pragma omp parallel for simd lastprivate(a, b) // expected-error {{lastprivate variable with incomplete type 'S1'}}
168 #pragma omp parallel for simd lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
171 #pragma omp parallel for simd lastprivate(a, b, c, d, f) // expected-error {{lastprivate variable with incomplete type 'S1'}} expected-error 3 {{shared variable cannot be lastprivate}}
H A Dparallel_for_simd_linear_messages.cpp70 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
71 extern S1 a;
120 #pragma omp parallel for simd linear (S1) // expected-error {{'S1' does not refer to a value}}
122 // expected-error@+2 {{linear variable with incomplete type 'S1'}}
184 #pragma omp parallel for simd linear (S1) // expected-error {{'S1' does not refer to a value}}
186 // expected-error@+2 {{linear variable with incomplete type 'S1'}}
H A Dparallel_for_simd_private_messages.cpp10 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
11 extern S1 a;
120 #pragma omp parallel for simd private(S1) // expected-error {{'S1' does not refer to a value}}
123 #pragma omp parallel for simd private(a, b) // expected-error {{private variable with incomplete type 'S1'}}
195 #pragma omp parallel for simd private(S1) // expected-error {{'S1' does not refer to a value}}
198 #pragma omp parallel for simd private(a, b) // expected-error {{private variable with incomplete type 'S1'}}
H A Dsimd_lastprivate_messages.cpp10 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
11 extern S1 a;
91 #pragma omp simd lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
94 #pragma omp simd lastprivate(a, b) // expected-error {{lastprivate variable with incomplete type 'S1'}}
159 #pragma omp simd lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
162 #pragma omp simd lastprivate(a, b, c, d, f) // expected-error {{lastprivate variable with incomplete type 'S1'}} expected-error 3 {{shared variable cannot be lastprivate}}
H A Dtarget_parallel_for_lastprivate_messages.cpp10 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
11 extern S1 a;
92 #pragma omp target parallel for lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
95 #pragma omp target parallel for lastprivate(a, b) // expected-error {{lastprivate variable with incomplete type 'S1'}}
166 #pragma omp target parallel for lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
169 #pragma omp target parallel for lastprivate(a, b, c, d, f) // expected-error {{lastprivate variable with incomplete type 'S1'}} expected-error 3 {{shared variable cannot be lastprivate}}
H A Dtarget_parallel_for_linear_messages.cpp81 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
82 extern S1 a;
143 #pragma omp target parallel for linear(S1) // expected-error {{'S1' does not refer to a value}}
146 // expected-error@+2 {{linear variable with incomplete type 'S1'}}
228 #pragma omp target parallel for linear(S1) // expected-error {{'S1' does not refer to a value}}
231 // expected-error@+2 {{linear variable with incomplete type 'S1'}}
H A Dtarget_parallel_for_simd_aligned_messages.cpp76 struct S1; // expected-note 2 {{declared here}}
77 extern S1 a; // expected-note {{'a' declared here}}
128 #pragma omp target parallel for simd aligned (S1) // expected-error {{'S1' does not refer to a value}}
187 #pragma omp target parallel for simd aligned (S1) // expected-error {{'S1' does not refer to a value}}
189 // expected-error@+2 {{argument of aligned clause should be array, pointer, reference to array or reference to pointer, not 'S1'}}
H A Dtarget_parallel_for_simd_lastprivate_messages.cpp10 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
11 extern S1 a;
92 #pragma omp target parallel for simd lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
95 #pragma omp target parallel for simd lastprivate(a, b) // expected-error {{lastprivate variable with incomplete type 'S1'}}
166 #pragma omp target parallel for simd lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
169 #pragma omp target parallel for simd lastprivate(a, b, c, d, f) // expected-error {{lastprivate variable with incomplete type 'S1'}} expected-error 3 {{shared variable cannot be lastprivate}}
H A Dtarget_parallel_for_simd_linear_messages.cpp81 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
82 extern S1 a;
143 #pragma omp target parallel for simd linear(S1) // expected-error {{'S1' does not refer to a value}}
146 // expected-error@+2 {{linear variable with incomplete type 'S1'}}
228 #pragma omp target parallel for simd linear(S1) // expected-error {{'S1' does not refer to a value}}
231 // expected-error@+2 {{linear variable with incomplete type 'S1'}}
H A Dtarget_parallel_for_simd_private_messages.cpp10 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
11 extern S1 a;
120 #pragma omp target parallel for simd private(S1) // expected-error {{'S1' does not refer to a value}}
123 #pragma omp target parallel for simd private(a, b) // expected-error {{private variable with incomplete type 'S1'}}
192 #pragma omp target parallel for simd private(S1) // expected-error {{'S1' does not refer to a value}}
195 #pragma omp target parallel for simd private(a, b) // expected-error {{private variable with incomplete type 'S1'}}
H A Dtarget_update_from_messages.cpp10 struct S1; // expected-note 2 {{declared here}}
11 extern S1 a;
96 #pragma omp target update from(S1) // expected-error {{'S1' does not refer to a value}}} expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
97 #pragma omp target update from(a, b, c, d, f) // expected-error {{incomplete type 'S1' where a complete type is required}} expected-error 2 {{type 'S2' is not mappable to target}}
150 #pragma omp target update from(S1) // expected-error {{'S1' does not refer to a value}}} expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
151 #pragma omp target update from(a, b, c, d, f) // expected-error {{incomplete type 'S1' where a complete type is required}} expected-error 2 {{type 'S2' is not mappable to target}}
H A Dtarget_update_to_messages.cpp10 struct S1; // expected-note 2 {{declared here}}
11 extern S1 a;
96 #pragma omp target update to(S1) // expected-error {{'S1' does not refer to a value}}} expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
97 #pragma omp target update to(a, b, c, d, f) // expected-error {{incomplete type 'S1' where a complete type is required}} expected-error 2 {{type 'S2' is not mappable to target}}
149 #pragma omp target update to(S1) // expected-error {{'S1' does not refer to a value}}} expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
150 #pragma omp target update to(a, b, c, d, f) // expected-error {{incomplete type 'S1' where a complete type is required}} expected-error 2 {{type 'S2' is not mappable to target}}
H A Dtaskloop_lastprivate_messages.cpp10 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
11 extern S1 a;
100 #pragma omp taskloop lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
104 #pragma omp taskloop lastprivate(a, b) // expected-error {{lastprivate variable with incomplete type 'S1'}}
194 #pragma omp taskloop lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
198 #pragma omp taskloop lastprivate(a, b, c, d, f) // expected-error {{lastprivate variable with incomplete type 'S1'}} expected-error 3 {{shared variable cannot be lastprivate}}
H A Dtaskloop_simd_aligned_messages.cpp76 struct S1; // expected-note 2 {{declared here}}
77 extern S1 a; // expected-note {{'a' declared here}}
128 #pragma omp taskloop simd aligned (S1) // expected-error {{'S1' does not refer to a value}}
187 #pragma omp taskloop simd aligned (S1) // expected-error {{'S1' does not refer to a value}}
189 // expected-error@+2 {{argument of aligned clause should be array, pointer, reference to array or reference to pointer, not 'S1'}}

Completed in 3633 milliseconds

1234567891011>>