Lines Matching refs:results
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()
481 expectEquals(results[2], testDotProdSimpleUnsigned(c1, c2)); in testDotProd()
482 expectEquals(results[3], testDotProdComplexUnsigned(c1, c2)); in testDotProd()
483 expectEquals(results[4], testDotProdComplexUnsignedCastedToSigned(c1, c2)); 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()
487 expectEquals(results[8], testDotProdParamUnsigned(-32768, c2)); 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()
492 expectEquals(results[13], testDotProdSimpleUnsignedMulCastedToSigned(c1, c2)); in testDotProd()
493 expectEquals(results[14], testDotProdSimpleUnsignedMulCastedToUnsigned(c1, c2)); in testDotProd()
494 expectEquals(results[15], testDotProdSimpleCastedToShort(s1, s2)); in testDotProd()
495 expectEquals(results[16], testDotProdSimpleCastedToChar(s1, s2)); in testDotProd()
496 expectEquals(results[17], testDotProdSimpleUnsignedCastedToShort(c1, c2)); in testDotProd()
497 expectEquals(results[18], testDotProdSimpleUnsignedCastedToChar(c1, c2)); in testDotProd()
498 expectEquals(results[19], testDotProdSimpleUnsignedCastedToLong(c1, c2)); in testDotProd()
499 expectEquals(results[20], testDotProdSignedNarrowerSigned(s1, s2)); in testDotProd()
500 expectEquals(results[21], testDotProdSignedNarrowerUnsigned(s1, s2)); in testDotProd()
501 expectEquals(results[22], testDotProdUnsignedNarrowerSigned(c1, c2)); in testDotProd()
502 expectEquals(results[23], testDotProdUnsignedNarrowerUnsigned(c1, c2)); in testDotProd()
503 expectEquals(results[24], testDotProdUnsignedSigned(c1, s2)); in testDotProd()