Lines Matching refs:y
45 private static void unroll(float[] x, float[] y) { in unroll() argument
47 x[i] = y[i] * 2.5f; in unroll()
117 static long longInductionReduction(long[] y) { in longInductionReduction() argument
120 x += y[0]; in longInductionReduction()
144 static void intVectorLongInvariant(int[] x, long[] y) { in intVectorLongInvariant() argument
146 x[i] = (int) y[0]; in intVectorLongInvariant()
173 static void longCanBeDoneWithInt(int[] x, int[] y) { in longCanBeDoneWithInt() argument
175 x[i] = (int) (y[i] + 1L); in longCanBeDoneWithInt()
181 float[] y = new float[100]; in testUnroll() local
184 y[i] = 2.0f; in testUnroll()
186 unroll(x, y); in testUnroll()
189 expectEquals(2.0f, y[i]); in testUnroll()