Lines Matching defs:temp
84 int temp = a[i] * b[i]; in testDotProdSimple() local
146 int temp = ((byte)(a[i] + 1)) * ((byte)(b[i] + 1)); in testDotProdComplex() local
209 int temp = (a[i] & 0xff) * (b[i] & 0xff); in testDotProdSimpleUnsigned() local
271 int temp = (((a[i] & 0xff) + 1) & 0xff) * (((b[i] & 0xff) + 1) & 0xff); in testDotProdComplexUnsigned() local
333 int temp = ((byte)((a[i] & 0xff) + 1)) * ((byte)((b[i] & 0xff) + 1)); in testDotProdComplexUnsignedCastToSigned() local
395 int temp = ((a[i] + 1) & 0xff) * ((b[i] + 1) & 0xff); in testDotProdComplexSignedCastToUnsigned() local
406 int temp = ((short)(a[i])) * ((short)(b[i])); in testDotProdSignedWidening() local
417 int temp = (byte)(x) * b[i]; in testDotProdParamSigned() local
428 int temp = (x & 0xff) * (b[i] & 0xff); in testDotProdParamUnsigned() local
441 int temp = b[i] * (x); in testDotProdIntParam() local
452 int temp = ((char)(a[i])) * ((char)(b[i])); in testDotProdSignedToChar() local
507 short temp = (short)(a[i] * b[i]); in testDotProdSimpleCastToShort() local
518 char temp = (char)(a[i] * b[i]); in testDotProdSimpleCastToChar() local
529 short temp = (short)((a[i] & 0xff) * (b[i] & 0xff)); in testDotProdSimpleUnsignedCastToShort() local
540 char temp = (char)((a[i] & 0xff) * (b[i] & 0xff)); in testDotProdSimpleUnsignedCastToChar() local
551 long temp = (long)((a[i] & 0xff) * (b[i] & 0xff)); in testDotProdSimpleUnsignedCastToLong() local
562 int temp = (a[i] & 0xff) * b[i]; in testDotProdUnsignedSigned() local