Home
last modified time | relevance | path

Searched refs:logic_or (Results 1 – 6 of 6) sorted by relevance

/llvm-project/openmp/runtime/test/worksharing/sections/
H A Domp_sections_reduction.c20 int logic_or; in test_omp_sections_reduction() local
34 logic_or=0; in test_omp_sections_reduction()
276 #pragma omp sections private(i) reduction(||:logic_or) in test_omp_sections_reduction()
281 logic_or = (logic_or || logics[i]); in test_omp_sections_reduction()
287 logic_or = (logic_or || logics[i]); in test_omp_sections_reduction()
293 logic_or = (logic_or || logics[i]); in test_omp_sections_reduction()
298 if(logic_or) { in test_omp_sections_reduction()
303 logic_or = 0; in test_omp_sections_reduction()
308 #pragma omp sections private(i) reduction(||:logic_or) in test_omp_sections_reduction()
313 logic_or = (logic_or || logics[i]); in test_omp_sections_reduction()
[all …]
H A Domp_parallel_sections_reduction.c21 int logic_or; in test_omp_parallel_sections_reduction() local
34 logic_or=0; in test_omp_parallel_sections_reduction()
259 #pragma omp parallel sections private(i) reduction(||:logic_or) in test_omp_parallel_sections_reduction()
264 logic_or = (logic_or || logics[i]); in test_omp_parallel_sections_reduction()
270 logic_or = (logic_or || logics[i]); in test_omp_parallel_sections_reduction()
276 logic_or = (logic_or || logics[i]); in test_omp_parallel_sections_reduction()
280 if(logic_or) { in test_omp_parallel_sections_reduction()
285 logic_or = 0; in test_omp_parallel_sections_reduction()
288 #pragma omp parallel sections private(i) reduction(||:logic_or) in test_omp_parallel_sections_reduction()
293 logic_or = (logic_or || logics[i]); in test_omp_parallel_sections_reduction()
[all …]
/llvm-project/openmp/runtime/test/parallel/
H A Domp_parallel_reduction.c23 int logic_or; in test_omp_parallel_reduction() local
36 logic_or=0; in test_omp_parallel_reduction()
142 #pragma omp parallel for schedule(dynamic,1) private(i) reduction(||:logic_or) in test_omp_parallel_reduction()
144 logic_or = logic_or || logics[i]; in test_omp_parallel_reduction()
146 if(logic_or) { in test_omp_parallel_reduction()
150 logic_or = 0; in test_omp_parallel_reduction()
153 #pragma omp parallel for schedule(dynamic,1) private(i) reduction(||:logic_or) in test_omp_parallel_reduction()
155 logic_or = logic_or || logics[i]; in test_omp_parallel_reduction()
157 if(!logic_or) { in test_omp_parallel_reduction()
/llvm-project/openmp/runtime/test/worksharing/for/
H A Domp_parallel_for_reduction.c23 int logic_or; in test_omp_parallel_for_reduction() local
38 logic_or=0; in test_omp_parallel_for_reduction()
147 reduction(||:logic_or) in test_omp_parallel_for_reduction()
149 logic_or = logic_or || logics[i]; in test_omp_parallel_for_reduction()
151 if(logic_or) { in test_omp_parallel_for_reduction()
155 logic_or = 0; in test_omp_parallel_for_reduction()
159 reduction(||:logic_or) in test_omp_parallel_for_reduction()
161 logic_or = logic_or || logics[i]; in test_omp_parallel_for_reduction()
163 if(!logic_or) { in test_omp_parallel_for_reduction()
H A Domp_for_reduction.c21 int logic_or; in test_omp_for_reduction() local
45 logic_or = 0; in test_omp_for_reduction()
192 #pragma omp for schedule(dynamic,1) reduction(||:logic_or) in test_omp_for_reduction()
194 logic_or = logic_or || logics[j]; in test_omp_for_reduction()
197 if (logic_or) { in test_omp_for_reduction()
202 logic_or = 0; in test_omp_for_reduction()
208 #pragma omp for schedule(dynamic,1) reduction(||:logic_or) in test_omp_for_reduction()
210 logic_or = logic_or || logics[j]; in test_omp_for_reduction()
213 if(!logic_or) { in test_omp_for_reduction()
/llvm-project/openmp/runtime/test/atomic/
H A Domp_atomic.c29 int logic_or = 0; in test_omp_atomic() local