Lines Matching refs:ii
11 int ii, jj, kk; in test_iteration_spaces() local
51 for (int &ref = ii; ref < 10; ref++) { in test_iteration_spaces()
65 for (;ii < 10; ++ii) in test_iteration_spaces()
66 c[ii] = a[ii]; in test_iteration_spaces()
71 for (ii + 1;ii < 10; ++ii) in test_iteration_spaces()
72 c[ii] = a[ii]; in test_iteration_spaces()
76 for (c[ii] = 0;ii < 10; ++ii) in test_iteration_spaces()
77 c[ii] = a[ii]; in test_iteration_spaces()
81 for (((ii)) = 0;ii < 10; ++ii) in test_iteration_spaces()
82 c[ii] = a[ii]; in test_iteration_spaces()
92 for (int i = 0; jj < kk; ii++) in test_iteration_spaces()
122 for (ii = 0; ii < 10; ++ii) in test_iteration_spaces()
123 c[ii] = a[ii]; in test_iteration_spaces()
127 for (ii = 0; ii < 10; ++jj) in test_iteration_spaces()
128 c[ii] = a[jj]; in test_iteration_spaces()
132 for (ii = 0; ii < 10; ++ ++ ii) in test_iteration_spaces()
133 c[ii] = a[ii]; in test_iteration_spaces()
138 for (ii = 0; ii < 10; ii = ii + ii) in test_iteration_spaces()
139 c[ii] = a[ii]; in test_iteration_spaces()
143 for (ii = 0; ii < 10; ii = ii + 1.0f) in test_iteration_spaces()
144 c[ii] = a[ii]; in test_iteration_spaces()
148 for (ii = 0; ii < 10; ii = ii + (int)1.1f) in test_iteration_spaces()
149 c[ii] = a[ii]; in test_iteration_spaces()
153 for (ii = 0; ii < 10; jj = ii + 2) in test_iteration_spaces()
154 c[ii] = a[ii]; in test_iteration_spaces()
159 for (ii = 0; ii < 10; jj > kk + 2) in test_iteration_spaces()
160 c[ii] = a[ii]; in test_iteration_spaces()
164 for (ii = 0; ii < 10;) in test_iteration_spaces()
165 c[ii] = a[ii]; in test_iteration_spaces()
170 for (ii = 0; ii < 10; !ii) in test_iteration_spaces()
171 c[ii] = a[ii]; in test_iteration_spaces()
175 for (ii = 0; ii < 10; ii ? ++ii : ++jj) in test_iteration_spaces()
176 c[ii] = a[ii]; in test_iteration_spaces()
180 for (ii = 0; ii < 10; ii = ii < 10) in test_iteration_spaces()
181 c[ii] = a[ii]; in test_iteration_spaces()
186 for (ii = 0; ii < 10; ii = ii + 0) in test_iteration_spaces()
187 c[ii] = a[ii]; in test_iteration_spaces()
192 for (ii = 0; ii < 10; ii = ii + (int)(0.8 - 0.45)) in test_iteration_spaces()
193 c[ii] = a[ii]; in test_iteration_spaces()
198 for (ii = 0; (ii) < 10; ii-=25) in test_iteration_spaces()
199 c[ii] = a[ii]; in test_iteration_spaces()
204 for (ii = 0; (ii < 10); ii-=0) in test_iteration_spaces()
205 c[ii] = a[ii]; in test_iteration_spaces()
210 for (ii = 0; ii > 10; (ii+=0)) in test_iteration_spaces()
211 c[ii] = a[ii]; in test_iteration_spaces()
216 for (ii = 0; ii < 10; (ii) = (1-1)+(ii)) in test_iteration_spaces()
217 c[ii] = a[ii]; in test_iteration_spaces()
222 for ((ii = 0); ii > 10; (ii-=0)) in test_iteration_spaces()
223 c[ii] = a[ii]; in test_iteration_spaces()
228 for (ii = 0; (ii < 10); (ii-=0)) in test_iteration_spaces()
229 c[ii] = a[ii]; in test_iteration_spaces()
233 #pragma omp simd private(ii) in test_iteration_spaces()
234 for (ii = 0; ii < 10; ii++) in test_iteration_spaces()
235 c[ii] = a[ii]; in test_iteration_spaces()
240 #pragma omp simd shared(ii) in test_iteration_spaces()
241 for (ii = 0; ii < 10; ii++) in test_iteration_spaces()
242 c[ii] = a[ii]; in test_iteration_spaces()
244 #pragma omp simd linear(ii) in test_iteration_spaces()
245 for (ii = 0; ii < 10; ii++) in test_iteration_spaces()
246 c[ii] = a[ii]; in test_iteration_spaces()
248 #pragma omp simd lastprivate(ii) linear(jj) collapse(2) // expected-note {{defined as linear}} in test_iteration_spaces()
249 for (ii = 0; ii < 10; ii++) in test_iteration_spaces()
251 c[ii] = a[jj]; in test_iteration_spaces()
272 for (ii = 0; ii < 10; ii += 1) in test_iteration_spaces()
274 c[globalii] += a[globalii] + ii; in test_iteration_spaces()