Home
last modified time | relevance | path

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

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