Lines Matching refs:s1
567 private static void testDotProd(short[] s1, short[] s2, char[] c1, char[] c2, int[] results) { in testDotProd() argument
568 expectEquals(results[0], testDotProdSimple(s1, s2)); in testDotProd()
569 expectEquals(results[1], testDotProdComplex(s1, s2)); in testDotProd()
573 expectEquals(results[5], testDotProdComplexSignedCastToUnsigned(s1, s2)); in testDotProd()
574 expectEquals(results[6], testDotProdSignedToInt(s1, s2)); in testDotProd()
578 expectEquals(results[10], testDotProdSignedToChar(s1, s2)); in testDotProd()
579 expectEquals(results[11], testDotProdSimpleMulCastToSigned(s1, s2)); in testDotProd()
580 expectEquals(results[12], testDotProdSimpleMulCastToUnsigned(s1, s2)); in testDotProd()
583 expectEquals(results[15], testDotProdSimpleCastToShort(s1, s2)); in testDotProd()
584 expectEquals(results[16], testDotProdSimpleCastToChar(s1, s2)); in testDotProd()
588 expectEquals(results[20], testDotProdSignedNarrowerSigned(s1, s2)); in testDotProd()
589 expectEquals(results[21], testDotProdSignedNarrowerUnsigned(s1, s2)); in testDotProd()