Lines Matching refs:b2

450   private static void testDotProd(byte[] b1, byte[] b2, int[] results) {  in testDotProd()  argument
451 expectEquals(results[0], testDotProdSimple(b1, b2)); in testDotProd()
452 expectEquals(results[1], testDotProdComplex(b1, b2)); in testDotProd()
453 expectEquals(results[2], testDotProdSimpleUnsigned(b1, b2)); in testDotProd()
454 expectEquals(results[3], testDotProdComplexUnsigned(b1, b2)); in testDotProd()
455 expectEquals(results[4], testDotProdComplexUnsignedCastedToSigned(b1, b2)); in testDotProd()
456 expectEquals(results[5], testDotProdComplexSignedCastedToUnsigned(b1, b2)); in testDotProd()
457 expectEquals(results[6], testDotProdSignedWidening(b1, b2)); in testDotProd()
458 expectEquals(results[7], testDotProdParamSigned(-128, b2)); in testDotProd()
459 expectEquals(results[8], testDotProdParamUnsigned(-128, b2)); in testDotProd()
460 expectEquals(results[9], testDotProdIntParam(-128, b2)); in testDotProd()
461 expectEquals(results[10], testDotProdSignedToChar(b1, b2)); in testDotProd()
462 expectEquals(results[11], testDotProdSimpleCastedToSignedByte(b1, b2)); in testDotProd()
463 expectEquals(results[12], testDotProdSimpleCastedToUnsignedByte(b1, b2)); in testDotProd()
464 expectEquals(results[13], testDotProdSimpleUnsignedCastedToSignedByte(b1, b2)); in testDotProd()
465 expectEquals(results[14], testDotProdSimpleUnsignedCastedToUnsignedByte(b1, b2)); in testDotProd()
466 expectEquals(results[15], testDotProdSimpleCastedToShort(b1, b2)); in testDotProd()
467 expectEquals(results[16], testDotProdSimpleCastedToChar(b1, b2)); in testDotProd()
468 expectEquals(results[17], testDotProdSimpleUnsignedCastedToShort(b1, b2)); in testDotProd()
469 expectEquals(results[18], testDotProdSimpleUnsignedCastedToChar(b1, b2)); in testDotProd()
470 expectEquals(results[19], testDotProdSimpleUnsignedCastedToLong(b1, b2)); in testDotProd()
471 expectEquals(results[20], testDotProdUnsignedSigned(b1, b2)); in testDotProd()