Lines Matching refs:i

63     for (int i = 0; i < 100; i++) {  in unroll()
64 x[i] = y[i] * 2.5f; in unroll()
98 for (int i = 1; i < n - 1; i++) { in stencil()
99 a[i] = b[i - 1] + b[i] + b[i + 1]; in stencil()
147 for (int i = 1; i < n + minus1; i++) { in stencilAddInt()
148 a[i] = b[i + minus1] + b[i] + b[i + 1]; in stencilAddInt()
201 for (int i = 1; i < n - plus1; i++) { in stencilSubInt()
202 a[i] = b[i - plus1] + b[i] + b[i + 1]; in stencilSubInt()
248 for (long i = 0; i < 10; i++) { in longInductionReduction()
286 for (int i = 0; i < 100; i++) { in intVectorLongInvariant()
287 x[i] = (int) y[0]; in intVectorLongInvariant()
329 for (int i = 0; i < 100; i++) { in longCanBeDoneWithInt()
330 x[i] = (int) (y[i] + 1L); in longCanBeDoneWithInt()
337 for (int i = 0; i < 100; i++) { in testUnroll()
338 x[i] = 0.0f; in testUnroll()
339 y[i] = 2.0f; in testUnroll()
342 for (int i = 0; i < 100; i++) { in testUnroll()
343 expectEquals(5.0f, x[i]); in testUnroll()
344 expectEquals(2.0f, y[i]); in testUnroll()
351 for (int i = 0; i < 100; i++) { in testStencil1()
352 a[i] = 0; in testStencil1()
353 b[i] = i; in testStencil1()
356 for (int i = 1; i < 99; i++) { in testStencil1()
357 int e = i + i + i; in testStencil1()
358 expectEquals(e, a[i]); in testStencil1()
359 expectEquals(i, b[i]); in testStencil1()
366 for (int i = 0; i < 100; i++) { in testStencil2()
367 a[i] = 0; in testStencil2()
368 b[i] = i; in testStencil2()
371 for (int i = 1; i < 99; i++) { in testStencil2()
372 int e = i + i + i; in testStencil2()
373 expectEquals(e, a[i]); in testStencil2()
374 expectEquals(i, b[i]); in testStencil2()
381 for (int i = 0; i < 100; i++) { in testStencil3()
382 a[i] = 0; in testStencil3()
383 b[i] = i; in testStencil3()
386 for (int i = 1; i < 99; i++) { in testStencil3()
387 int e = i + i + i; in testStencil3()
388 expectEquals(e, a[i]); in testStencil3()
389 expectEquals(i, b[i]); in testStencil3()
399 for (int i = 0; i < 100; i++) { in testTypes()
400 expectEquals(3, a[i]); in testTypes()
403 for (int i = 0; i < 100; i++) { in testTypes()
404 expectEquals(4, b[i]); in testTypes()