Lines Matching refs:a

51   public static final int testDotProdSimple(short[] a, short[] b) {  in testDotProdSimple()  argument
54 int temp = a[i] * b[i]; in testDotProdSimple()
92 public static final int testDotProdComplex(short[] a, short[] b) { in testDotProdComplex() argument
95 int temp = ((short)(a[i] + 1)) * ((short)(b[i] + 1)); in testDotProdComplex()
126 public static final int testDotProdSimpleUnsigned(char[] a, char[] b) { in testDotProdSimpleUnsigned() argument
129 int temp = a[i] * b[i]; in testDotProdSimpleUnsigned()
167 public static final int testDotProdComplexUnsigned(char[] a, char[] b) { in testDotProdComplexUnsigned() argument
170 int temp = ((char)(a[i] + 1)) * ((char)(b[i] + 1)); in testDotProdComplexUnsigned()
208 public static final int testDotProdComplexUnsignedCastedToSigned(char[] a, char[] b) { in testDotProdComplexUnsignedCastedToSigned() argument
211 int temp = ((short)(a[i] + 1)) * ((short)(b[i] + 1)); in testDotProdComplexUnsignedCastedToSigned()
249 public static final int testDotProdComplexSignedCastedToUnsigned(short[] a, short[] b) { in testDotProdComplexSignedCastedToUnsigned() argument
252 int temp = ((char)(a[i] + 1)) * ((char)(b[i] + 1)); in testDotProdComplexSignedCastedToUnsigned()
260 public static final int testDotProdSignedToInt(short[] a, short[] b) { in testDotProdSignedToInt() argument
263 int temp = ((int)(a[i])) * ((int)(b[i])); in testDotProdSignedToInt()
304 public static final int testDotProdSignedToChar(short[] a, short[] b) { in testDotProdSignedToChar() argument
307 int temp = ((char)(a[i])) * ((char)(b[i])); in testDotProdSignedToChar()
317 public static final int testDotProdSimpleMulCastedToSigned(short[] a, short[] b) { in testDotProdSimpleMulCastedToSigned() argument
320 short temp = (short)(a[i] * b[i]); in testDotProdSimpleMulCastedToSigned()
329 public static final int testDotProdSimpleMulCastedToUnsigned(short[] a, short[] b) { in testDotProdSimpleMulCastedToUnsigned() argument
332 char temp = (char)(a[i] * b[i]); in testDotProdSimpleMulCastedToUnsigned()
340 public static final int testDotProdSimpleUnsignedMulCastedToSigned(char[] a, char[] b) { in testDotProdSimpleUnsignedMulCastedToSigned() argument
343 short temp = (short)(a[i] * b[i]); in testDotProdSimpleUnsignedMulCastedToSigned()
351 public static final int testDotProdSimpleUnsignedMulCastedToUnsigned(char[] a, char[] b) { in testDotProdSimpleUnsignedMulCastedToUnsigned() argument
354 char temp = (char)(a[i] * b[i]); in testDotProdSimpleUnsignedMulCastedToUnsigned()
362 public static final int testDotProdSimpleCastedToShort(short[] a, short[] b) { in testDotProdSimpleCastedToShort() argument
365 short temp = (short)(a[i] * b[i]); in testDotProdSimpleCastedToShort()
373 public static final int testDotProdSimpleCastedToChar(short[] a, short[] b) { in testDotProdSimpleCastedToChar() argument
376 char temp = (char)(a[i] * b[i]); in testDotProdSimpleCastedToChar()
384 public static final int testDotProdSimpleUnsignedCastedToShort(char[] a, char[] b) { in testDotProdSimpleUnsignedCastedToShort() argument
387 short temp = (short)(a[i] * b[i]); in testDotProdSimpleUnsignedCastedToShort()
395 public static final int testDotProdSimpleUnsignedCastedToChar(char[] a, char[] b) { in testDotProdSimpleUnsignedCastedToChar() argument
398 char temp = (char)(a[i] * b[i]); in testDotProdSimpleUnsignedCastedToChar()
406 public static final int testDotProdSimpleUnsignedCastedToLong(char[] a, char[] b) { in testDotProdSimpleUnsignedCastedToLong() argument
409 long temp = (long)(a[i] * b[i]); in testDotProdSimpleUnsignedCastedToLong()
419 public static final int testDotProdSignedNarrowerSigned(short[] a, short[] b) { in testDotProdSignedNarrowerSigned() argument
422 int temp = ((byte)(a[i])) * ((byte)(b[i])); in testDotProdSignedNarrowerSigned()
430 public static final int testDotProdSignedNarrowerUnsigned(short[] a, short[] b) { in testDotProdSignedNarrowerUnsigned() argument
433 int temp = (a[i] & 0xff) * (b[i] & 0xff); in testDotProdSignedNarrowerUnsigned()
441 public static final int testDotProdUnsignedNarrowerSigned(char[] a, char[] b) { in testDotProdUnsignedNarrowerSigned() argument
444 int temp = ((byte)(a[i])) * ((byte)(b[i])); in testDotProdUnsignedNarrowerSigned()
452 public static final int testDotProdUnsignedNarrowerUnsigned(char[] a, char[] b) { in testDotProdUnsignedNarrowerUnsigned() argument
455 int temp = (a[i] & 0xff) * (b[i] & 0xff); in testDotProdUnsignedNarrowerUnsigned()
463 public static final int testDotProdUnsignedSigned(char[] a, short[] b) { in testDotProdUnsignedSigned() argument
466 int temp = a[i] * b[i]; in testDotProdUnsignedSigned()