Lines Matching refs:s1
237 int s1 = 1; in testDotProdBothSignedUnsigned1() local
242 s1 += a_val * b_val; in testDotProdBothSignedUnsigned1()
245 return s1 + s2; in testDotProdBothSignedUnsigned1()
284 int s1 = 1; in testDotProdBothSignedUnsigned2() local
290 s1 += a_val * 42; in testDotProdBothSignedUnsigned2()
292 return s1 + s2; in testDotProdBothSignedUnsigned2()
331 int s1 = 1; in testDotProdBothSignedUnsignedDoubleLoad() local
334 s1 += a[i] * b[i]; in testDotProdBothSignedUnsignedDoubleLoad()
337 return s1 + s2; in testDotProdBothSignedUnsignedDoubleLoad()
374 int s1 = 1; in testDotProdBothSignedUnsignedChar() local
380 s1 += a_val * b_val; in testDotProdBothSignedUnsignedChar()
382 return s1 + s2; in testDotProdBothSignedUnsignedChar()
404 short[] s1 = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, MIN_S, MIN_S }; in run() local
410 expectEquals(-8388351, testDotProdMixedSize(b1, s1)); in run()