Lines Matching refs:s1
329 int s1 = 1; in testDotProdBothSignedUnsigned1() local
334 s1 += a_val * b_val; in testDotProdBothSignedUnsigned1()
337 return s1 + s2; in testDotProdBothSignedUnsigned1()
396 int s1 = 1; in testDotProdBothSignedUnsigned2() local
402 s1 += a_val * 42; in testDotProdBothSignedUnsigned2()
404 return s1 + s2; in testDotProdBothSignedUnsigned2()
464 int s1 = 1; in testDotProdBothSignedUnsignedDoubleLoad() local
467 s1 += a[i] * b[i]; in testDotProdBothSignedUnsignedDoubleLoad()
470 return s1 + s2; in testDotProdBothSignedUnsignedDoubleLoad()
516 int s1 = 1; in testDotProdBothSignedUnsignedChar() local
522 s1 += a_val * b_val; in testDotProdBothSignedUnsignedChar()
524 return s1 + s2; in testDotProdBothSignedUnsignedChar()
546 short[] s1 = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, MIN_S, MIN_S }; in run() local
552 expectEquals(-8388351, testDotProdMixedSize(b1, s1)); in run()