Lines Matching refs:s2
568 private static void testDotProd(short[] s1, short[] s2, char[] c1, char[] c2, int[] results) { in testDotProd() argument
569 expectEquals(results[0], testDotProdSimple(s1, s2)); in testDotProd()
570 expectEquals(results[1], testDotProdComplex(s1, s2)); in testDotProd()
574 expectEquals(results[5], testDotProdComplexSignedCastedToUnsigned(s1, s2)); in testDotProd()
575 expectEquals(results[6], testDotProdSignedToInt(s1, s2)); in testDotProd()
576 expectEquals(results[7], testDotProdParamSigned(-32768, s2)); in testDotProd()
578 expectEquals(results[9], testDotProdIntParam(-32768, s2)); in testDotProd()
579 expectEquals(results[10], testDotProdSignedToChar(s1, s2)); in testDotProd()
580 expectEquals(results[11], testDotProdSimpleMulCastedToSigned(s1, s2)); in testDotProd()
581 expectEquals(results[12], testDotProdSimpleMulCastedToUnsigned(s1, s2)); in testDotProd()
584 expectEquals(results[15], testDotProdSimpleCastedToShort(s1, s2)); in testDotProd()
585 expectEquals(results[16], testDotProdSimpleCastedToChar(s1, s2)); in testDotProd()
589 expectEquals(results[20], testDotProdSignedNarrowerSigned(s1, s2)); in testDotProd()
590 expectEquals(results[21], testDotProdSignedNarrowerUnsigned(s1, s2)); in testDotProd()
593 expectEquals(results[24], testDotProdUnsignedSigned(c1, s2)); in testDotProd()