Lines Matching defs:temp
54 int temp = a[i] * b[i]; in testDotProdSimple() local
95 int temp = ((byte)(a[i] + 1)) * ((byte)(b[i] + 1)); in testDotProdComplex() local
129 int temp = (a[i] & 0xff) * (b[i] & 0xff); in testDotProdSimpleUnsigned() local
170 int temp = (((a[i] & 0xff) + 1) & 0xff) * (((b[i] & 0xff) + 1) & 0xff); in testDotProdComplexUnsigned() local
211 int temp = ((byte)((a[i] & 0xff) + 1)) * ((byte)((b[i] & 0xff) + 1)); in testDotProdComplexUnsignedCastedToSigned() local
252 int temp = ((a[i] + 1) & 0xff) * ((b[i] + 1) & 0xff); in testDotProdComplexSignedCastedToUnsigned() local
263 int temp = ((short)(a[i])) * ((short)(b[i])); in testDotProdSignedWidening() local
274 int temp = (byte)(x) * b[i]; in testDotProdParamSigned() local
285 int temp = (x & 0xff) * (b[i] & 0xff); in testDotProdParamUnsigned() local
298 int temp = b[i] * (x); in testDotProdIntParam() local
309 int temp = ((char)(a[i])) * ((char)(b[i])); in testDotProdSignedToChar() local
364 short temp = (short)(a[i] * b[i]); in testDotProdSimpleCastedToShort() local
375 char temp = (char)(a[i] * b[i]); in testDotProdSimpleCastedToChar() local
386 short temp = (short)((a[i] & 0xff) * (b[i] & 0xff)); in testDotProdSimpleUnsignedCastedToShort() local
397 char temp = (char)((a[i] & 0xff) * (b[i] & 0xff)); in testDotProdSimpleUnsignedCastedToChar() local
408 long temp = (long)((a[i] & 0xff) * (b[i] & 0xff)); in testDotProdSimpleUnsignedCastedToLong() local
419 int temp = (a[i] & 0xff) * b[i]; in testDotProdUnsignedSigned() local