Lines Matching refs:a

139   public static final int testDotProdByteToChar(char[] a, char[] b) {  in testDotProdByteToChar()  argument
142 int temp = ((char)((byte)(a[i] + 129))) * b[i]; in testDotProdByteToChar()
150 public static final int testDotProdMixedSize(byte[] a, short[] b) { in testDotProdMixedSize() argument
153 int temp = a[i] * b[i]; in testDotProdMixedSize()
161 public static final int testDotProdMixedSizeAndSign(byte[] a, char[] b) { in testDotProdMixedSizeAndSign() argument
164 int temp = a[i] * b[i]; in testDotProdMixedSizeAndSign()
194 public static final int testDotProdInt32(int[] a, int[] b) { in testDotProdInt32() argument
197 int temp = a[i] * b[i]; in testDotProdInt32()
236 public static final int testDotProdBothSignedUnsigned1(byte[] a, byte[] b) { in testDotProdBothSignedUnsigned1() argument
240 byte a_val = a[i]; in testDotProdBothSignedUnsigned1()
283 public static final int testDotProdBothSignedUnsigned2(byte[] a, byte[] b) { in testDotProdBothSignedUnsigned2() argument
287 byte a_val = a[i]; in testDotProdBothSignedUnsigned2()
330 public static final int testDotProdBothSignedUnsignedDoubleLoad(byte[] a, byte[] b) { in testDotProdBothSignedUnsignedDoubleLoad() argument
334 s1 += a[i] * b[i]; in testDotProdBothSignedUnsignedDoubleLoad()
335 s2 += (a[i] & 0xff) * (b[i] & 0xff); in testDotProdBothSignedUnsignedDoubleLoad()
373 public static final int testDotProdBothSignedUnsignedChar(char[] a, char[] b) { in testDotProdBothSignedUnsignedChar() argument
377 char a_val = a[i]; in testDotProdBothSignedUnsignedChar()