Lines Matching refs:i

46     for (int i = 0; i < 100; i++) {  in unroll()
47 x[i] = y[i] * 2.5f; in unroll()
64 for (int i = 1; i < n - 1; i++) { in stencil()
65 a[i] = b[i - 1] + b[i] + b[i + 1]; in stencil()
119 for (long i = 0; i < 10; i++) { in longInductionReduction()
145 for (int i = 0; i < 100; i++) { in intVectorLongInvariant()
146 x[i] = (int) y[0]; in intVectorLongInvariant()
174 for (int i = 0; i < 100; i++) { in longCanBeDoneWithInt()
175 x[i] = (int) (y[i] + 1L); in longCanBeDoneWithInt()
182 for (int i = 0; i < 100; i++) { in testUnroll()
183 x[i] = 0.0f; in testUnroll()
184 y[i] = 2.0f; in testUnroll()
187 for (int i = 0; i < 100; i++) { in testUnroll()
188 expectEquals(5.0f, x[i]); in testUnroll()
189 expectEquals(2.0f, y[i]); in testUnroll()
196 for (int i = 0; i < 100; i++) { in testStencil1()
197 a[i] = 0; in testStencil1()
198 b[i] = i; in testStencil1()
201 for (int i = 1; i < 99; i++) { in testStencil1()
202 int e = i + i + i; in testStencil1()
203 expectEquals(e, a[i]); in testStencil1()
204 expectEquals(i, b[i]); in testStencil1()
211 for (int i = 0; i < 100; i++) { in testStencil2()
212 a[i] = 0; in testStencil2()
213 b[i] = i; in testStencil2()
216 for (int i = 1; i < 99; i++) { in testStencil2()
217 int e = i + i + i; in testStencil2()
218 expectEquals(e, a[i]); in testStencil2()
219 expectEquals(i, b[i]); in testStencil2()
226 for (int i = 0; i < 100; i++) { in testStencil3()
227 a[i] = 0; in testStencil3()
228 b[i] = i; in testStencil3()
231 for (int i = 1; i < 99; i++) { in testStencil3()
232 int e = i + i + i; in testStencil3()
233 expectEquals(e, a[i]); in testStencil3()
234 expectEquals(i, b[i]); in testStencil3()
244 for (int i = 0; i < 100; i++) { in testTypes()
245 expectEquals(3, a[i]); in testTypes()
248 for (int i = 0; i < 100; i++) { in testTypes()
249 expectEquals(4, b[i]); in testTypes()