Home
last modified time | relevance | path

Searched refs:b_val (Results 1 – 1 of 1) sorted by relevance

/art/test/684-checker-simd-dotprod/src/other/
DTestVarious.java241 byte b_val = b[i]; in testDotProdBothSignedUnsigned1()
242 s1 += a_val * b_val; in testDotProdBothSignedUnsigned1()
243 s2 += (a_val & 0xff) * (b_val & 0xff); in testDotProdBothSignedUnsigned1()
288 byte b_val = b[i]; in testDotProdBothSignedUnsigned2()
289 s2 += (a_val & 0xff) * (b_val & 0xff); in testDotProdBothSignedUnsigned2()
378 char b_val = b[i]; in testDotProdBothSignedUnsignedChar() local
379 s2 += ((short)a_val) * ((short)b_val); in testDotProdBothSignedUnsignedChar()
380 s1 += a_val * b_val; in testDotProdBothSignedUnsignedChar()