Lines Matching refs:s2
330 int s2 = 2; in testDotProdBothSignedUnsigned1() local
335 s2 += (a_val & 0xff) * (b_val & 0xff); in testDotProdBothSignedUnsigned1()
337 return s1 + s2; in testDotProdBothSignedUnsigned1()
397 int s2 = 2; in testDotProdBothSignedUnsigned2() local
401 s2 += (a_val & 0xff) * (b_val & 0xff); in testDotProdBothSignedUnsigned2()
404 return s1 + s2; in testDotProdBothSignedUnsigned2()
465 int s2 = 2; in testDotProdBothSignedUnsignedDoubleLoad() local
468 s2 += (a[i] & 0xff) * (b[i] & 0xff); in testDotProdBothSignedUnsignedDoubleLoad()
470 return s1 + s2; in testDotProdBothSignedUnsignedDoubleLoad()
517 int s2 = 2; in testDotProdBothSignedUnsignedChar() local
521 s2 += ((short)a_val) * ((short)b_val); in testDotProdBothSignedUnsignedChar()
524 return s1 + s2; in testDotProdBothSignedUnsignedChar()