OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:S2s
(Results
1 - 25
of
29
) sorted by null
1
2
/external/clang/test/OpenMP/
parallel_private_messages.cpp
16
static float
S2s
;
72
#pragma omp parallel private(S2::
S2s
)
task_private_messages.cpp
17
static float
S2s
;
76
#pragma omp task private(S2::
S2s
)
parallel_firstprivate_messages.cpp
17
static float
S2s
;
78
#pragma omp parallel firstprivate(S2::
S2s
)
task_firstprivate_messages.cpp
18
static float
S2s
;
82
#pragma omp task firstprivate(S2::
S2s
)
teams_private_messages.cpp
16
static float
S2s
;
99
#pragma omp teams private(S2::
S2s
)
teams_firstprivate_messages.cpp
18
static float
S2s
;
107
#pragma omp teams firstprivate(S2::
S2s
)
parallel_reduction_messages.cpp
19
static float
S2s
;
118
#pragma omp parallel reduction(&& : S2::
S2s
)
213
#pragma omp parallel reduction(&& : S2::
S2s
)
parallel_sections_reduction_messages.cpp
19
static float
S2s
;
158
#pragma omp parallel sections reduction(&& : S2::
S2s
)
311
#pragma omp parallel sections reduction(&& : S2::
S2s
)
sections_reduction_messages.cpp
19
static float
S2s
; // expected-note 2 {{static data member is predetermined as shared}}
179
#pragma omp sections reduction(&& : S2::
S2s
) // expected-error {{shared variable cannot be reduction}}
359
#pragma omp sections reduction(&& : S2::
S2s
) // expected-error {{shared variable cannot be reduction}}
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
;
223
#pragma omp parallel sections lastprivate(S2::
S2s
)
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}}
simd_lastprivate_messages.cpp
19
static float
S2s
; // expected-note {{static data member is predetermined as shared}}
184
#pragma omp simd 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
19
static float
S2s
; // expected-note 2 {{static data member is predetermined as shared}}
159
#pragma omp for reduction(&& : S2::
S2s
) // expected-error {{shared variable cannot be reduction}}
308
#pragma omp for reduction(&& : S2::
S2s
) // expected-error {{shared variable cannot be reduction}}
for_simd_reduction_messages.cpp
19
static float
S2s
; // expected-note 2 {{static data member is predetermined as shared}}
159
#pragma omp for simd reduction(&& : S2::
S2s
) // expected-error {{shared variable cannot be reduction}}
308
#pragma omp for simd reduction(&& : S2::
S2s
) // expected-error {{shared variable cannot be reduction}}
parallel_for_reduction_messages.cpp
19
static float
S2s
;
138
#pragma omp parallel for reduction(&& : S2::
S2s
)
260
#pragma omp parallel for reduction(&& : S2::
S2s
)
parallel_for_simd_reduction_messages.cpp
19
static float
S2s
;
138
#pragma omp parallel for simd reduction(&& : S2::
S2s
)
260
#pragma omp parallel for simd reduction(&& : S2::
S2s
)
simd_reduction_messages.cpp
19
static float
S2s
; // expected-note 2 {{static data member is predetermined as shared}}
138
#pragma omp simd reduction(&& : S2::
S2s
) // expected-error {{shared variable cannot be reduction}}
263
#pragma omp simd reduction(&& : S2::
S2s
) // expected-error {{shared variable cannot be reduction}}
teams_reduction_messages.cpp
19
static float
S2s
;
139
#pragma omp teams reduction(&& : S2::
S2s
)
267
#pragma omp teams reduction(&& : S2::
S2s
)
for_firstprivate_messages.cpp
18
static float
S2s
;
234
#pragma omp for firstprivate(S2::
S2s
) // OK
for_lastprivate_messages.cpp
20
static float
S2s
; // expected-note {{static data member is predetermined as shared}}
224
#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}}
parallel_for_firstprivate_messages.cpp
18
static float
S2s
;
203
#pragma omp parallel for firstprivate(S2::
S2s
) // OK
Completed in 371 milliseconds
1
2