Home
last modified time | relevance | path

Searched refs:reduction_seen (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/
H A Dsemantics.c6336 int reduction_seen = 0; in finish_omp_clauses() local
6372 if (reduction_seen == 0) in finish_omp_clauses()
6373 reduction_seen = OMP_CLAUSE_REDUCTION_INSCAN (c) ? -1 : 1; in finish_omp_clauses()
6374 else if (reduction_seen != -2 in finish_omp_clauses()
6375 && reduction_seen != (OMP_CLAUSE_REDUCTION_INSCAN (c) in finish_omp_clauses()
6381 reduction_seen = -2; in finish_omp_clauses()
7930 if (reduction_seen < 0 && (ordered_seen || schedule_seen)) in finish_omp_clauses()
7931 reduction_seen = -2; in finish_omp_clauses()
7968 if (reduction_seen == -2) in finish_omp_clauses()
8028 if (reduction_seen == -2) in finish_omp_clauses()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/
H A Dsemantics.cc6765 int reduction_seen = 0; in finish_omp_clauses() local
6808 if (reduction_seen == 0) in finish_omp_clauses()
6809 reduction_seen = OMP_CLAUSE_REDUCTION_INSCAN (c) ? -1 : 1; in finish_omp_clauses()
6810 else if (reduction_seen != -2 in finish_omp_clauses()
6811 && reduction_seen != (OMP_CLAUSE_REDUCTION_INSCAN (c) in finish_omp_clauses()
6817 reduction_seen = -2; in finish_omp_clauses()
8760 if (reduction_seen < 0 && (ordered_seen || schedule_seen)) in finish_omp_clauses()
8761 reduction_seen = -2; in finish_omp_clauses()
8798 if (reduction_seen == -2) in finish_omp_clauses()
8858 if (reduction_seen == -2) in finish_omp_clauses()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/c/
H A Dc-typeck.c13900 int reduction_seen = 0; in c_finish_omp_clauses() local
13940 if (reduction_seen == 0) in c_finish_omp_clauses()
13941 reduction_seen = OMP_CLAUSE_REDUCTION_INSCAN (c) ? -1 : 1; in c_finish_omp_clauses()
13942 else if (reduction_seen != -2 in c_finish_omp_clauses()
13943 && reduction_seen != (OMP_CLAUSE_REDUCTION_INSCAN (c) in c_finish_omp_clauses()
13949 reduction_seen = -2; in c_finish_omp_clauses()
15125 if (reduction_seen < 0 && ordered_clause) in c_finish_omp_clauses()
15130 reduction_seen = -2; in c_finish_omp_clauses()
15133 if (reduction_seen < 0 && schedule_clause) in c_finish_omp_clauses()
15138 reduction_seen = -2; in c_finish_omp_clauses()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/c/
H A Dc-typeck.cc14137 int reduction_seen = 0; in c_finish_omp_clauses() local
14182 if (reduction_seen == 0) in c_finish_omp_clauses()
14183 reduction_seen = OMP_CLAUSE_REDUCTION_INSCAN (c) ? -1 : 1; in c_finish_omp_clauses()
14184 else if (reduction_seen != -2 in c_finish_omp_clauses()
14185 && reduction_seen != (OMP_CLAUSE_REDUCTION_INSCAN (c) in c_finish_omp_clauses()
14191 reduction_seen = -2; in c_finish_omp_clauses()
15579 if (reduction_seen < 0 && ordered_clause) in c_finish_omp_clauses()
15584 reduction_seen = -2; in c_finish_omp_clauses()
15587 if (reduction_seen < 0 && schedule_clause) in c_finish_omp_clauses()
15592 reduction_seen = -2; in c_finish_omp_clauses()
[all …]
H A DChangeLog1070 OMP_CLAUSE_REDUCTION_INSCAN unless reduction_seen == -2.