Lines Matching refs:s2
478 private static void testDotProd(short[] s1, short[] s2, char[] c1, char[] c2, int[] results) { in testDotProd() argument
479 expectEquals(results[0], testDotProdSimple(s1, s2)); in testDotProd()
480 expectEquals(results[1], testDotProdComplex(s1, s2)); in testDotProd()
484 expectEquals(results[5], testDotProdComplexSignedCastedToUnsigned(s1, s2)); in testDotProd()
485 expectEquals(results[6], testDotProdSignedToInt(s1, s2)); in testDotProd()
486 expectEquals(results[7], testDotProdParamSigned(-32768, s2)); in testDotProd()
488 expectEquals(results[9], testDotProdIntParam(-32768, s2)); in testDotProd()
489 expectEquals(results[10], testDotProdSignedToChar(s1, s2)); in testDotProd()
490 expectEquals(results[11], testDotProdSimpleMulCastedToSigned(s1, s2)); in testDotProd()
491 expectEquals(results[12], testDotProdSimpleMulCastedToUnsigned(s1, s2)); in testDotProd()
494 expectEquals(results[15], testDotProdSimpleCastedToShort(s1, s2)); in testDotProd()
495 expectEquals(results[16], testDotProdSimpleCastedToChar(s1, s2)); in testDotProd()
499 expectEquals(results[20], testDotProdSignedNarrowerSigned(s1, s2)); in testDotProd()
500 expectEquals(results[21], testDotProdSignedNarrowerUnsigned(s1, s2)); in testDotProd()
503 expectEquals(results[24], testDotProdUnsignedSigned(c1, s2)); in testDotProd()