HomeSort by relevance Sort by last modified time
    Searched refs:S2s (Results 1 - 25 of 36) sorted by null

1 2

  /external/clang/test/OpenMP/
parallel_private_messages.cpp 16 static float S2s; // expected-note {{static data member is predetermined as shared}}
72 #pragma omp parallel private(S2::S2s) // expected-error {{shared variable cannot be private}}
task_private_messages.cpp 17 static float S2s; // expected-note {{static data member is predetermined as shared}}
81 #pragma omp task private(S2::S2s) // expected-error {{shared variable cannot be private}}
parallel_firstprivate_messages.cpp 17 static float S2s;
79 #pragma omp parallel firstprivate(S2::S2s)
task_firstprivate_messages.cpp 18 static float S2s;
88 #pragma omp task firstprivate(S2::S2s)
teams_private_messages.cpp 16 static float S2s; // expected-note {{static data member is predetermined as shared}}
99 #pragma omp teams private(S2::S2s) // expected-error {{shared variable cannot be private}}
distribute_private_messages.cpp 16 static float S2s; // expected-note {{predetermined as shared}}
78 #pragma omp distribute private(S2::S2s) // expected-error {{shared variable cannot be private}}
teams_firstprivate_messages.cpp 18 static float S2s;
107 #pragma omp teams firstprivate(S2::S2s)
target_map_messages.cpp 17 static float S2s; // expected-note 4 {{mappable type cannot contain static members}}
85 #pragma omp target map(S2::S2s)
107 #pragma omp target map(S2::S2s)
177 #pragma omp target map(S2::S2s)
parallel_reduction_messages.cpp 21 static float S2s; // expected-note 2 {{static data member is predetermined as shared}}
124 #pragma omp parallel reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
219 #pragma omp parallel reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
parallel_sections_reduction_messages.cpp 21 static float S2s; // expected-note 2 {{static data member is predetermined as shared}}
164 #pragma omp parallel sections reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
317 #pragma omp parallel sections reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
distribute_firstprivate_messages.cpp 18 static float S2s;
114 #pragma omp distribute firstprivate(S2::S2s)
parallel_sections_firstprivate_messages.cpp 18 static float S2s;
236 #pragma omp parallel sections firstprivate(S2::S2s) // OK
parallel_sections_lastprivate_messages.cpp 19 static float S2s; // expected-note {{static data member is predetermined as shared}}
223 #pragma omp parallel sections lastprivate(S2::S2s) // expected-error {{shared variable cannot be lastprivate}}
sections_firstprivate_messages.cpp 18 static float S2s;
267 #pragma omp sections firstprivate(S2::S2s) // OK
sections_lastprivate_messages.cpp 19 static float S2s; // expected-note {{static data member is predetermined as shared}}
253 #pragma omp sections lastprivate(S2::S2s) // expected-error {{shared variable cannot be lastprivate}}
single_firstprivate_messages.cpp 18 static float S2s;
199 #pragma omp single firstprivate(S2::S2s) // OK
for_reduction_messages.cpp 21 static float S2s; // expected-note 2 {{static data member is predetermined as shared}}
166 #pragma omp for reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
323 #pragma omp for reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
for_simd_reduction_messages.cpp 21 static float S2s; // expected-note 2 {{static data member is predetermined as shared}}
165 #pragma omp for simd reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
314 #pragma omp for simd reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
parallel_for_reduction_messages.cpp 21 static float S2s; // expected-note 2 {{static data member is predetermined as shared}}
144 #pragma omp parallel for reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
266 #pragma omp parallel for reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
parallel_for_simd_reduction_messages.cpp 21 static float S2s; // expected-note 2 {{static data member is predetermined as shared}}
144 #pragma omp parallel for simd reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
266 #pragma omp parallel for simd reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
sections_reduction_messages.cpp 21 static float S2s; // expected-note 2 {{static data member is predetermined as shared}}
185 #pragma omp sections reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
365 #pragma omp sections reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
simd_reduction_messages.cpp 21 static float S2s; // expected-note 2 {{static data member is predetermined as shared}}
144 #pragma omp simd reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
269 #pragma omp simd reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
teams_reduction_messages.cpp 21 static float S2s; // expected-note 2 {{static data member is predetermined as shared}}
145 #pragma omp teams reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
273 #pragma omp teams reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
for_lastprivate_messages.cpp 20 static float S2s; // expected-note {{static data member is predetermined as shared}}
227 #pragma omp for lastprivate(S2::S2s) // expected-error {{shared variable cannot be lastprivate}}
for_simd_lastprivate_messages.cpp 20 static float S2s; // expected-note {{static data member is predetermined as shared}}
224 #pragma omp for simd lastprivate(S2::S2s) // expected-error {{shared variable cannot be lastprivate}}

Completed in 254 milliseconds

1 2