• Home
  • Raw
  • Download

Lines Matching refs:ii

28   int ii, jj, kk;  in test_iteration_spaces()  local
78 for (int &ref = ii; ref < 10; ref++) { in test_iteration_spaces()
95 for (; ii < 10; ++ii) in test_iteration_spaces()
96 c[ii] = a[ii]; in test_iteration_spaces()
102 for (ii + 1; ii < 10; ++ii) in test_iteration_spaces()
103 c[ii] = a[ii]; in test_iteration_spaces()
108 for (c[ii] = 0; ii < 10; ++ii) in test_iteration_spaces()
109 c[ii] = a[ii]; in test_iteration_spaces()
114 for (((ii)) = 0; ii < 10; ++ii) in test_iteration_spaces()
115 c[ii] = a[ii]; in test_iteration_spaces()
127 for (int i = 0; jj < kk; ii++) in test_iteration_spaces()
164 for (ii = 0; ii < 10; ++ii) in test_iteration_spaces()
165 c[ii] = a[ii]; in test_iteration_spaces()
170 for (ii = 0; ii < 10; ++jj) in test_iteration_spaces()
171 c[ii] = a[jj]; in test_iteration_spaces()
176 for (ii = 0; ii < 10; ++++ii) in test_iteration_spaces()
177 c[ii] = a[ii]; in test_iteration_spaces()
183 for (ii = 0; ii < 10; ii = ii + ii) in test_iteration_spaces()
184 c[ii] = a[ii]; in test_iteration_spaces()
189 for (ii = 0; ii < 10; ii = ii + 1.0f) in test_iteration_spaces()
190 c[ii] = a[ii]; in test_iteration_spaces()
195 for (ii = 0; ii < 10; ii = ii + (int)1.1f) in test_iteration_spaces()
196 c[ii] = a[ii]; in test_iteration_spaces()
201 for (ii = 0; ii < 10; jj = ii + 2) in test_iteration_spaces()
202 c[ii] = a[ii]; in test_iteration_spaces()
208 for (ii = 0; ii<10; jj> kk + 2) in test_iteration_spaces()
209 c[ii] = a[ii]; in test_iteration_spaces()
214 for (ii = 0; ii < 10;) in test_iteration_spaces()
215 c[ii] = a[ii]; in test_iteration_spaces()
221 for (ii = 0; ii < 10; !ii) in test_iteration_spaces()
222 c[ii] = a[ii]; in test_iteration_spaces()
227 for (ii = 0; ii < 10; ii ? ++ii : ++jj) in test_iteration_spaces()
228 c[ii] = a[ii]; in test_iteration_spaces()
233 for (ii = 0; ii < 10; ii = ii < 10) in test_iteration_spaces()
234 c[ii] = a[ii]; in test_iteration_spaces()
240 for (ii = 0; ii < 10; ii = ii + 0) in test_iteration_spaces()
241 c[ii] = a[ii]; in test_iteration_spaces()
247 for (ii = 0; ii < 10; ii = ii + (int)(0.8 - 0.45)) in test_iteration_spaces()
248 c[ii] = a[ii]; in test_iteration_spaces()
254 for (ii = 0; (ii) < 10; ii -= 25) in test_iteration_spaces()
255 c[ii] = a[ii]; in test_iteration_spaces()
261 for (ii = 0; (ii < 10); ii -= 0) in test_iteration_spaces()
262 c[ii] = a[ii]; in test_iteration_spaces()
268 for (ii = 0; ii > 10; (ii += 0)) in test_iteration_spaces()
269 c[ii] = a[ii]; in test_iteration_spaces()
275 for (ii = 0; ii < 10; (ii) = (1 - 1) + (ii)) in test_iteration_spaces()
276 c[ii] = a[ii]; in test_iteration_spaces()
282 for ((ii = 0); ii > 10; (ii -= 0)) in test_iteration_spaces()
283 c[ii] = a[ii]; in test_iteration_spaces()
289 for (ii = 0; (ii < 10); (ii -= 0)) in test_iteration_spaces()
290 c[ii] = a[ii]; in test_iteration_spaces()
295 #pragma omp taskloop firstprivate(ii) in test_iteration_spaces()
296 for (ii = 0; ii < 10; ii++) in test_iteration_spaces()
297 c[ii] = a[ii]; in test_iteration_spaces()
301 #pragma omp taskloop linear(ii) in test_iteration_spaces()
302 for (ii = 0; ii < 10; ii++) in test_iteration_spaces()
303 c[ii] = a[ii]; in test_iteration_spaces()
306 #pragma omp taskloop private(ii) in test_iteration_spaces()
307 for (ii = 0; ii < 10; ii++) in test_iteration_spaces()
308 c[ii] = a[ii]; in test_iteration_spaces()
311 #pragma omp taskloop lastprivate(ii) in test_iteration_spaces()
312 for (ii = 0; ii < 10; ii++) in test_iteration_spaces()
313 c[ii] = a[ii]; in test_iteration_spaces()
347 for (ii = 0; ii < 10; ii += 1) in test_iteration_spaces()
349 c[globalii] += a[globalii] + ii; in test_iteration_spaces()