Lines Matching refs:a

268   static void narrowingSubscript(float[] a) {  in narrowingSubscript()  argument
270 for (long i = 0; i < a.length; i++) { in narrowingSubscript()
271 a[(int) i] += val; in narrowingSubscript()
297 private static void string2Bytes(char[] a, String b) { in string2Bytes() argument
298 int min = Math.min(a.length, b.length()); in string2Bytes()
300 a[i] = b.charAt(i); in string2Bytes()
358 private static void oneBoth(short[] a, char[] b) { in oneBoth() argument
359 for (int i = 0; i < Math.min(a.length, b.length); i++) { in oneBoth()
360 a[i] = 1; in oneBoth()
367 private static void arrayInTripCount(int[] a, byte[] b, int n) { in arrayInTripCount() argument
369 for (int i = 0, u = a[0]; i < u; i++) { in arrayInTripCount()
406 private static void typeConv(byte[] a, byte[] b) { in typeConv() argument
407 int len = Math.min(a.length, b.length); in typeConv()
409 a[i] = (byte) (b[i] + 1); in typeConv()
421 private static void inductionMax(int[] a) { in inductionMax() argument
438 static int feedsIntoDeopt(int[] a) { in feedsIntoDeopt() argument
446 a[i] = a[i - 1]; in feedsIntoDeopt()
452 int a[] = { 1, 2, 3 }; in absCanBeNegative() local
454 for (int i = Math.abs(x); i < a.length; i++) { in absCanBeNegative()
455 y += a[i]; in absCanBeNegative()
461 static int sum(int[][] a) { in sum() argument
463 for (int y = 0; y < a.length; y++) { in sum()
464 int[] aa = a[y]; in sum()
495 int[] a = new int[17]; // a[i] = 0; in doNotMoveSIMD() local
497 for (int i = 0; i < a.length; i++) { in doNotMoveSIMD()
498 a[i] += 1; // a[i] = 1; in doNotMoveSIMD()
500 for (int i = 0; i < a.length; i++) { in doNotMoveSIMD()
501 sum += a[i]; // expect a[i] = 1; in doNotMoveSIMD()
508 private static final int reduction32Values(int[] a, int[] b, int[] c, int[] d) { in reduction32Values() argument
542 s0 += a[i]; in reduction32Values()
546 s4 += a[i]; in reduction32Values()
550 s8 += a[i]; in reduction32Values()
554 s12 += a[i]; in reduction32Values()
558 s16 += a[i]; in reduction32Values()
562 s20 += a[i]; in reduction32Values()
566 s24 += a[i]; in reduction32Values()
570 s28 += a[i]; in reduction32Values()
587 private static final float $noinline$ensureSlowPathFPSpillFill(float[] a, in $noinline$ensureSlowPathFPSpillFill() argument
633 f0 += a[i]; in $noinline$ensureSlowPathFPSpillFill()
637 f4 += a[i]; in $noinline$ensureSlowPathFPSpillFill()
641 f8 += a[i]; in $noinline$ensureSlowPathFPSpillFill()
645 f12 += a[i]; in $noinline$ensureSlowPathFPSpillFill()
649 f16 += a[i]; in $noinline$ensureSlowPathFPSpillFill()
653 f20 += a[i]; in $noinline$ensureSlowPathFPSpillFill()
657 f24 += a[i]; in $noinline$ensureSlowPathFPSpillFill()
661 f28 += a[i]; in $noinline$ensureSlowPathFPSpillFill()
672 int[] a = { 1, 2, 3, 4 }; in reductionIntoReplication() local
675 x += a[i]; in reductionIntoReplication()
678 a[i] = x; in reductionIntoReplication()
680 return a[3]; in reductionIntoReplication()
693 public static final int testDotProdAndSet(byte[] a, byte[] b, byte[] c) { in testDotProdAndSet() argument
696 int temp = a[i] * b[i]; in testDotProdAndSet()
708 public static final int testDotProdAndDotProd(byte[] a, byte[] b) { in testDotProdAndDotProd() argument
712 int temp = a[i] * b[i]; in testDotProdAndDotProd()
756 public static final int testDotProdAndDotProdExtraMul0(byte[] a, byte[] b) { in testDotProdAndDotProdExtraMul0() argument
760 int temp0 = a[i] * b[i]; in testDotProdAndDotProdExtraMul0()
761 int temp1 = (byte)(temp0) * a[i]; in testDotProdAndDotProdExtraMul0()
774 public static final int testDotProdAndDotProdExtraMul1(byte[] a, byte[] b) { in testDotProdAndDotProdExtraMul1() argument
778 int temp0 = a[i] * b[i]; in testDotProdAndDotProdExtraMul1()
779 int temp1 = (byte)(temp0) * a[i]; in testDotProdAndDotProdExtraMul1()
867 byte[] a = new byte[ARRAY_SIZE]; in createAndInitByteArray()
868 for (int i = 0; i < a.length; i++) { in createAndInitByteArray()
869 a[i] = (byte)((~i) + x); in createAndInitByteArray()
871 return a; in createAndInitByteArray()
875 int[] a = new int[ARRAY_SIZE]; in createAndInitIntArray() local
876 for (int i = 0; i < a.length; i++) { in createAndInitIntArray()
877 a[i] = (~i) + x; in createAndInitIntArray()
879 return a; in createAndInitIntArray()
943 float[] a = new float[16]; in main() local
944 narrowingSubscript(a); in main()
946 expectEquals(2.0f, a[i]); in main()