Searched refs:logic_or (Results 1 – 6 of 6) sorted by relevance
20 int logic_or; in test_omp_sections_reduction() local34 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 …]
21 int logic_or; in test_omp_parallel_sections_reduction() local34 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 …]
23 int logic_or; in test_omp_parallel_reduction() local36 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()
23 int logic_or; in test_omp_parallel_for_reduction() local38 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()
21 int logic_or; in test_omp_for_reduction() local45 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()
29 int logic_or = 0; in test_omp_atomic() local