Lines Matching refs:temp

64       int temp = a[i] * b[i];  in testDotProdSimple()  local
65 s += temp; in testDotProdSimple()
105 int temp = ((byte)(a[i] + 1)) * ((byte)(b[i] + 1)); in testDotProdComplex() local
106 s += temp; in testDotProdComplex()
148 int temp = (a[i] & 0xff) * (b[i] & 0xff); in testDotProdSimpleUnsigned() local
149 s += temp; in testDotProdSimpleUnsigned()
189 int temp = (((a[i] & 0xff) + 1) & 0xff) * (((b[i] & 0xff) + 1) & 0xff); in testDotProdComplexUnsigned() local
190 s += temp; in testDotProdComplexUnsigned()
230 int temp = ((byte)((a[i] & 0xff) + 1)) * ((byte)((b[i] & 0xff) + 1)); in testDotProdComplexUnsignedCastedToSigned() local
231 s += temp; in testDotProdComplexUnsignedCastedToSigned()
271 int temp = ((a[i] + 1) & 0xff) * ((b[i] + 1) & 0xff); in testDotProdComplexSignedCastedToUnsigned() local
272 s += temp; in testDotProdComplexSignedCastedToUnsigned()
282 int temp = ((short)(a[i])) * ((short)(b[i])); in testDotProdSignedWidening() local
283 s += temp; in testDotProdSignedWidening()
293 int temp = (byte)(x) * b[i]; in testDotProdParamSigned() local
294 s += temp; in testDotProdParamSigned()
304 int temp = (x & 0xff) * (b[i] & 0xff); in testDotProdParamUnsigned() local
305 s += temp; in testDotProdParamUnsigned()
317 int temp = b[i] * (x); in testDotProdIntParam() local
318 s += temp; in testDotProdIntParam()
328 int temp = ((char)(a[i])) * ((char)(b[i])); in testDotProdSignedToChar() local
329 s += temp; in testDotProdSignedToChar()
341 byte temp = (byte)(a[i] * b[i]); in testDotProdSimpleCastedToSignedByte()
342 s += temp; in testDotProdSimpleCastedToSignedByte()
362 byte temp = (byte)((a[i] & 0xff) * (b[i] & 0xff)); in testDotProdSimpleUnsignedCastedToSignedByte()
363 s += temp; in testDotProdSimpleUnsignedCastedToSignedByte()
383 short temp = (short)(a[i] * b[i]); in testDotProdSimpleCastedToShort() local
384 s += temp; in testDotProdSimpleCastedToShort()
394 char temp = (char)(a[i] * b[i]); in testDotProdSimpleCastedToChar() local
395 s += temp; in testDotProdSimpleCastedToChar()
405 short temp = (short)((a[i] & 0xff) * (b[i] & 0xff)); in testDotProdSimpleUnsignedCastedToShort() local
406 s += temp; in testDotProdSimpleUnsignedCastedToShort()
416 char temp = (char)((a[i] & 0xff) * (b[i] & 0xff)); in testDotProdSimpleUnsignedCastedToChar() local
417 s += temp; in testDotProdSimpleUnsignedCastedToChar()
427 long temp = (long)((a[i] & 0xff) * (b[i] & 0xff)); in testDotProdSimpleUnsignedCastedToLong() local
428 s += temp; in testDotProdSimpleUnsignedCastedToLong()
438 int temp = (a[i] & 0xff) * b[i]; in testDotProdUnsignedSigned() local
439 s += temp; in testDotProdUnsignedSigned()