Lines Matching refs:ii

24   int ii, jj, kk;  in test_iteration_spaces()  local
74 for (int &ref = ii; ref < 10; ref++) { in test_iteration_spaces()
91 for (; ii < 10; ++ii) in test_iteration_spaces()
92 c[ii] = a[ii]; in test_iteration_spaces()
98 for (ii + 1; ii < 10; ++ii) in test_iteration_spaces()
99 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()
110 for (((ii)) = 0; ii < 10; ++ii) in test_iteration_spaces()
111 c[ii] = a[ii]; in test_iteration_spaces()
123 for (int i = 0; jj < kk; ii++) in test_iteration_spaces()
159 for (ii = 0; ii < 10; ++ii) in test_iteration_spaces()
160 c[ii] = a[ii]; in test_iteration_spaces()
165 for (ii = 0; ii < 10; ++jj) in test_iteration_spaces()
166 c[ii] = a[jj]; in test_iteration_spaces()
171 for (ii = 0; ii < 10; ++++ii) in test_iteration_spaces()
172 c[ii] = a[ii]; in test_iteration_spaces()
178 for (ii = 0; ii < 10; ii = ii + ii) in test_iteration_spaces()
179 c[ii] = a[ii]; in test_iteration_spaces()
184 for (ii = 0; ii < 10; ii = ii + 1.0f) in test_iteration_spaces()
185 c[ii] = a[ii]; in test_iteration_spaces()
190 for (ii = 0; ii < 10; ii = ii + (int)1.1f) in test_iteration_spaces()
191 c[ii] = a[ii]; in test_iteration_spaces()
196 for (ii = 0; ii < 10; jj = ii + 2) in test_iteration_spaces()
197 c[ii] = a[ii]; in test_iteration_spaces()
203 for (ii = 0; ii<10; jj> kk + 2) in test_iteration_spaces()
204 c[ii] = a[ii]; in test_iteration_spaces()
209 for (ii = 0; ii < 10;) in test_iteration_spaces()
210 c[ii] = a[ii]; in test_iteration_spaces()
216 for (ii = 0; ii < 10; !ii) in test_iteration_spaces()
217 c[ii] = a[ii]; in test_iteration_spaces()
222 for (ii = 0; ii < 10; ii ? ++ii : ++jj) in test_iteration_spaces()
223 c[ii] = a[ii]; in test_iteration_spaces()
228 for (ii = 0; ii < 10; ii = ii < 10) in test_iteration_spaces()
229 c[ii] = a[ii]; in test_iteration_spaces()
235 for (ii = 0; ii < 10; ii = ii + 0) in test_iteration_spaces()
236 c[ii] = a[ii]; in test_iteration_spaces()
242 for (ii = 0; ii < 10; ii = ii + (int)(0.8 - 0.45)) in test_iteration_spaces()
243 c[ii] = a[ii]; in test_iteration_spaces()
249 for (ii = 0; (ii) < 10; ii -= 25) in test_iteration_spaces()
250 c[ii] = a[ii]; in test_iteration_spaces()
256 for (ii = 0; (ii < 10); ii -= 0) in test_iteration_spaces()
257 c[ii] = a[ii]; in test_iteration_spaces()
263 for (ii = 0; ii > 10; (ii += 0)) in test_iteration_spaces()
264 c[ii] = a[ii]; in test_iteration_spaces()
270 for (ii = 0; ii < 10; (ii) = (1 - 1) + (ii)) in test_iteration_spaces()
271 c[ii] = a[ii]; in test_iteration_spaces()
277 for ((ii = 0); ii > 10; (ii -= 0)) in test_iteration_spaces()
278 c[ii] = a[ii]; in test_iteration_spaces()
284 for (ii = 0; (ii < 10); (ii -= 0)) in test_iteration_spaces()
285 c[ii] = a[ii]; in test_iteration_spaces()
290 #pragma omp taskloop firstprivate(ii) in test_iteration_spaces()
291 for (ii = 0; ii < 10; ii++) in test_iteration_spaces()
292 c[ii] = a[ii]; in test_iteration_spaces()
297 #pragma omp taskloop linear(ii) in test_iteration_spaces()
299 for (ii = 0; ii < 10; ii++) in test_iteration_spaces()
300 c[ii] = a[ii]; in test_iteration_spaces()
303 #pragma omp taskloop private(ii) in test_iteration_spaces()
304 for (ii = 0; ii < 10; ii++) in test_iteration_spaces()
305 c[ii] = a[ii]; in test_iteration_spaces()
308 #pragma omp taskloop lastprivate(ii) in test_iteration_spaces()
309 for (ii = 0; ii < 10; ii++) in test_iteration_spaces()
310 c[ii] = a[ii]; in test_iteration_spaces()
344 for (ii = 0; ii < 10; ii += 1) in test_iteration_spaces()
346 c[globalii] += a[globalii] + ii; in test_iteration_spaces()