• Home
  • Raw
  • Download

Lines Matching refs:b1

431   private static void testDotProd(byte[] b1, byte[] b2, int[] results) {  in testDotProd()  argument
432 expectEquals(results[0], testDotProdSimple(b1, b2)); in testDotProd()
433 expectEquals(results[1], testDotProdComplex(b1, b2)); in testDotProd()
434 expectEquals(results[2], testDotProdSimpleUnsigned(b1, b2)); in testDotProd()
435 expectEquals(results[3], testDotProdComplexUnsigned(b1, b2)); in testDotProd()
436 expectEquals(results[4], testDotProdComplexUnsignedCastedToSigned(b1, b2)); in testDotProd()
437 expectEquals(results[5], testDotProdComplexSignedCastedToUnsigned(b1, b2)); in testDotProd()
438 expectEquals(results[6], testDotProdSignedWidening(b1, b2)); in testDotProd()
442 expectEquals(results[10], testDotProdSignedToChar(b1, b2)); in testDotProd()
443 expectEquals(results[11], testDotProdSimpleCastedToSignedByte(b1, b2)); in testDotProd()
444 expectEquals(results[12], testDotProdSimpleCastedToUnsignedByte(b1, b2)); in testDotProd()
445 expectEquals(results[13], testDotProdSimpleUnsignedCastedToSignedByte(b1, b2)); in testDotProd()
446 expectEquals(results[14], testDotProdSimpleUnsignedCastedToUnsignedByte(b1, b2)); in testDotProd()
447 expectEquals(results[15], testDotProdSimpleCastedToShort(b1, b2)); in testDotProd()
448 expectEquals(results[16], testDotProdSimpleCastedToChar(b1, b2)); in testDotProd()
449 expectEquals(results[17], testDotProdSimpleUnsignedCastedToShort(b1, b2)); in testDotProd()
450 expectEquals(results[18], testDotProdSimpleUnsignedCastedToChar(b1, b2)); in testDotProd()
451 expectEquals(results[19], testDotProdSimpleUnsignedCastedToLong(b1, b2)); in testDotProd()
452 expectEquals(results[20], testDotProdUnsignedSigned(b1, b2)); in testDotProd()