OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:S2sc
(Results
1 - 25
of
26
) sorted by null
1
2
/external/clang/test/OpenMP/
parallel_firstprivate_messages.cpp
18
static const float
S2sc
;
20
const float S2::
S2sc
= 0;
79
#pragma omp parallel firstprivate(S2::
S2sc
)
task_firstprivate_messages.cpp
19
static const float
S2sc
;
21
const float S2::
S2sc
= 0;
83
#pragma omp task firstprivate(S2::
S2sc
)
teams_firstprivate_messages.cpp
19
static const float
S2sc
;
21
const float S2::
S2sc
= 0;
110
#pragma omp teams firstprivate(S2::
S2sc
)
parallel_reduction_messages.cpp
20
static const float
S2sc
;
22
const float S2::
S2sc
= 0; // expected-note 2 {{'
S2sc
' defined here}}
120
#pragma omp parallel reduction(&& : S2::
S2sc
) // expected-error {{const-qualified variable cannot be reduction}}
215
#pragma omp parallel reduction(&& : S2::
S2sc
) // expected-error {{const-qualified variable cannot be reduction}}
parallel_sections_reduction_messages.cpp
20
static const float
S2sc
;
22
const float S2::
S2sc
= 0; // expected-note 2 {{'
S2sc
' defined here}}
162
#pragma omp parallel sections reduction(&& : S2::
S2sc
) // expected-error {{const-qualified variable cannot be reduction}}
315
#pragma omp parallel sections reduction(&& : S2::
S2sc
) // expected-error {{const-qualified variable cannot be reduction}}
sections_reduction_messages.cpp
20
static const float
S2sc
;
22
const float S2::
S2sc
= 0; // expected-note 2 {{'
S2sc
' defined here}}
184
#pragma omp sections reduction(&& : S2::
S2sc
) // expected-error {{const-qualified variable cannot be reduction}}
364
#pragma omp sections reduction(&& : S2::
S2sc
) // expected-error {{const-qualified variable cannot be reduction}}
parallel_sections_firstprivate_messages.cpp
19
static const float
S2sc
;
21
const float S2::
S2sc
= 0;
240
#pragma omp parallel sections firstprivate(S2::
S2sc
) // OK
parallel_sections_lastprivate_messages.cpp
20
static const float
S2sc
;
22
const float S2::
S2sc
= 0; // expected-note {{static data member is predetermined as shared}}
227
#pragma omp parallel sections lastprivate(S2::
S2sc
) // expected-error {{shared variable cannot be lastprivate}}
sections_firstprivate_messages.cpp
19
static const float
S2sc
;
21
const float S2::
S2sc
= 0;
272
#pragma omp sections firstprivate(S2::
S2sc
) // OK
sections_lastprivate_messages.cpp
20
static const float
S2sc
;
22
const float S2::
S2sc
= 0; // expected-note {{static data member is predetermined as shared}}
258
#pragma omp sections lastprivate(S2::
S2sc
) // expected-error {{shared variable cannot be lastprivate}}
simd_lastprivate_messages.cpp
20
static const float
S2sc
;
22
const float S2::
S2sc
= 0; // expected-note {{static data member is predetermined as shared}}
187
#pragma omp simd lastprivate(S2::
S2sc
) // expected-error {{shared variable cannot be lastprivate}}
single_firstprivate_messages.cpp
19
static const float
S2sc
;
21
const float S2::
S2sc
= 0;
202
#pragma omp single firstprivate(S2::
S2sc
) // OK
for_firstprivate_messages.cpp
19
static const float
S2sc
;
21
const float S2::
S2sc
= 0;
238
#pragma omp for firstprivate(S2::
S2sc
) // OK
for_lastprivate_messages.cpp
21
static const float
S2sc
;
23
const float S2::
S2sc
= 0; // expected-note {{static data member is predetermined as shared}}
228
#pragma omp for lastprivate(S2::
S2sc
) // expected-error {{shared variable cannot be lastprivate}}
for_simd_lastprivate_messages.cpp
21
static const float
S2sc
;
23
const float S2::
S2sc
= 0; // expected-note {{static data member is predetermined as shared}}
228
#pragma omp for simd lastprivate(S2::
S2sc
) // expected-error {{shared variable cannot be lastprivate}}
parallel_for_firstprivate_messages.cpp
19
static const float
S2sc
;
21
const float S2::
S2sc
= 0;
206
#pragma omp parallel for firstprivate(S2::
S2sc
) // OK
parallel_for_lastprivate_messages.cpp
21
static const float
S2sc
;
23
const float S2::
S2sc
= 0; // expected-note {{static data member is predetermined as shared}}
197
#pragma omp parallel for lastprivate(S2::
S2sc
) // expected-error {{shared variable cannot be lastprivate}}
parallel_for_simd_firstprivate_messages.cpp
19
static const float
S2sc
;
21
const float S2::
S2sc
= 0;
205
#pragma omp parallel for simd firstprivate(S2::
S2sc
) // OK
parallel_for_simd_lastprivate_messages.cpp
20
static const float
S2sc
;
22
const float S2::
S2sc
= 0; // expected-note {{static data member is predetermined as shared}}
196
#pragma omp parallel for simd lastprivate(S2::
S2sc
) // expected-error {{shared variable cannot be lastprivate}}
for_reduction_messages.cpp
20
static const float
S2sc
;
22
const float S2::
S2sc
= 0; // expected-note 2 {{'
S2sc
' defined here}}
163
#pragma omp for reduction(&& : S2::
S2sc
) // expected-error {{const-qualified variable cannot be reduction}}
312
#pragma omp for reduction(&& : S2::
S2sc
) // expected-error {{const-qualified variable cannot be reduction}}
for_simd_reduction_messages.cpp
20
static const float
S2sc
;
22
const float S2::
S2sc
= 0; // expected-note 2 {{'
S2sc
' defined here}}
163
#pragma omp for simd reduction(&& : S2::
S2sc
) // expected-error {{const-qualified variable cannot be reduction}}
312
#pragma omp for simd reduction(&& : S2::
S2sc
) // expected-error {{const-qualified variable cannot be reduction}}
parallel_for_reduction_messages.cpp
20
static const float
S2sc
;
22
const float S2::
S2sc
= 0; // expected-note 2 {{'
S2sc
' defined here}}
141
#pragma omp parallel for reduction(&& : S2::
S2sc
) // expected-error {{const-qualified variable cannot be reduction}}
263
#pragma omp parallel for reduction(&& : S2::
S2sc
) // expected-error {{const-qualified variable cannot be reduction}}
parallel_for_simd_reduction_messages.cpp
20
static const float
S2sc
;
22
const float S2::
S2sc
= 0; // expected-note 2 {{'
S2sc
' defined here}}
141
#pragma omp parallel for simd reduction(&& : S2::
S2sc
) // expected-error {{const-qualified variable cannot be reduction}}
263
#pragma omp parallel for simd reduction(&& : S2::
S2sc
) // expected-error {{const-qualified variable cannot be reduction}}
simd_reduction_messages.cpp
20
static const float
S2sc
;
22
const float S2::
S2sc
= 0; // expected-note 2 {{'
S2sc
' defined here}}
141
#pragma omp simd reduction(&& : S2::
S2sc
) // expected-error {{const-qualified variable cannot be reduction}}
266
#pragma omp simd reduction(&& : S2::
S2sc
) // expected-error {{const-qualified variable cannot be reduction}}
teams_reduction_messages.cpp
20
static const float
S2sc
;
22
const float S2::
S2sc
= 0; // expected-note 2 {{'
S2sc
' defined here}}
142
#pragma omp teams reduction(&& : S2::
S2sc
) // expected-error {{const-qualified variable cannot be reduction}}
270
#pragma omp teams reduction(&& : S2::
S2sc
) // expected-error {{const-qualified variable cannot be reduction}}
Completed in 819 milliseconds
1
2