• Home
  • Raw
  • Download

Lines Matching refs:ii

11   int ii, jj, kk;  in test_iteration_spaces()  local
69 for (int &ref = ii; ref < 10; ref++) { in test_iteration_spaces()
89 for (;ii < 10; ++ii) in test_iteration_spaces()
90 c[ii] = a[ii]; in test_iteration_spaces()
97 for (ii + 1;ii < 10; ++ii) in test_iteration_spaces()
98 c[ii] = a[ii]; in test_iteration_spaces()
104 for (c[ii] = 0;ii < 10; ++ii) in test_iteration_spaces()
105 c[ii] = a[ii]; in test_iteration_spaces()
111 for (((ii)) = 0;ii < 10; ++ii) in test_iteration_spaces()
112 c[ii] = a[ii]; in test_iteration_spaces()
126 for (int i = 0; jj < kk; ii++) in test_iteration_spaces()
168 for (ii = 0; ii < 10; ++ii) in test_iteration_spaces()
169 c[ii] = a[ii]; in test_iteration_spaces()
175 for (ii = 0; ii < 10; ++jj) in test_iteration_spaces()
176 c[ii] = a[jj]; in test_iteration_spaces()
182 for (ii = 0; ii < 10; ++ ++ ii) in test_iteration_spaces()
183 c[ii] = a[ii]; in test_iteration_spaces()
190 for (ii = 0; ii < 10; ii = ii + ii) in test_iteration_spaces()
191 c[ii] = a[ii]; in test_iteration_spaces()
197 for (ii = 0; ii < 10; ii = ii + 1.0f) in test_iteration_spaces()
198 c[ii] = a[ii]; in test_iteration_spaces()
204 for (ii = 0; ii < 10; ii = ii + (int)1.1f) in test_iteration_spaces()
205 c[ii] = a[ii]; in test_iteration_spaces()
211 for (ii = 0; ii < 10; jj = ii + 2) in test_iteration_spaces()
212 c[ii] = a[ii]; in test_iteration_spaces()
219 for (ii = 0; ii < 10; jj > kk + 2) in test_iteration_spaces()
220 c[ii] = a[ii]; in test_iteration_spaces()
226 for (ii = 0; ii < 10;) in test_iteration_spaces()
227 c[ii] = a[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()
241 for (ii = 0; ii < 10; ii ? ++ii : ++jj) in test_iteration_spaces()
242 c[ii] = a[ii]; in test_iteration_spaces()
248 for (ii = 0; ii < 10; ii = ii < 10) in test_iteration_spaces()
249 c[ii] = a[ii]; in test_iteration_spaces()
256 for (ii = 0; ii < 10; ii = ii + 0) in test_iteration_spaces()
257 c[ii] = a[ii]; in test_iteration_spaces()
264 for (ii = 0; ii < 10; ii = ii + (int)(0.8 - 0.45)) in test_iteration_spaces()
265 c[ii] = a[ii]; in test_iteration_spaces()
272 for (ii = 0; (ii) < 10; ii-=25) in test_iteration_spaces()
273 c[ii] = a[ii]; in test_iteration_spaces()
280 for (ii = 0; (ii < 10); ii-=0) in test_iteration_spaces()
281 c[ii] = a[ii]; in test_iteration_spaces()
288 for (ii = 0; ii > 10; (ii+=0)) in test_iteration_spaces()
289 c[ii] = a[ii]; in test_iteration_spaces()
296 for (ii = 0; ii < 10; (ii) = (1-1)+(ii)) in test_iteration_spaces()
297 c[ii] = a[ii]; in test_iteration_spaces()
304 for ((ii = 0); ii > 10; (ii-=0)) in test_iteration_spaces()
305 c[ii] = a[ii]; in test_iteration_spaces()
312 for (ii = 0; (ii < 10); (ii-=0)) in test_iteration_spaces()
313 c[ii] = a[ii]; in test_iteration_spaces()
319 #pragma omp distribute simd private(ii) in test_iteration_spaces()
320 for (ii = 0; ii < 10; ii++) in test_iteration_spaces()
321 c[ii] = a[ii]; in test_iteration_spaces()
328 #pragma omp distribute simd shared(ii) in test_iteration_spaces()
329 for (ii = 0; ii < 10; ii++) in test_iteration_spaces()
330 c[ii] = a[ii]; in test_iteration_spaces()
334 #pragma omp distribute simd linear(ii) in test_iteration_spaces()
335 for (ii = 0; ii < 10; ii++) in test_iteration_spaces()
336 c[ii] = a[ii]; in test_iteration_spaces()
340 …#pragma omp distribute simd lastprivate(ii) linear(jj) collapse(2) // expected-note {{defined as l… in test_iteration_spaces()
341 for (ii = 0; ii < 10; ii++) in test_iteration_spaces()
343 c[ii] = a[jj]; in test_iteration_spaces()
370 for (ii = 0; ii < 10; ii += 1) in test_iteration_spaces()
372 c[globalii] += a[globalii] + ii; in test_iteration_spaces()