Lines Matching refs:temp

54       int temp = a[i] * b[i];  in testDotProdSimple()  local
55 s += temp; in testDotProdSimple()
95 int temp = ((short)(a[i] + 1)) * ((short)(b[i] + 1)); in testDotProdComplex() local
96 s += temp; in testDotProdComplex()
129 int temp = a[i] * b[i]; in testDotProdSimpleUnsigned() local
130 s += temp; in testDotProdSimpleUnsigned()
170 int temp = ((char)(a[i] + 1)) * ((char)(b[i] + 1)); in testDotProdComplexUnsigned() local
171 s += temp; in testDotProdComplexUnsigned()
211 int temp = ((short)(a[i] + 1)) * ((short)(b[i] + 1)); in testDotProdComplexUnsignedCastedToSigned() local
212 s += temp; in testDotProdComplexUnsignedCastedToSigned()
252 int temp = ((char)(a[i] + 1)) * ((char)(b[i] + 1)); in testDotProdComplexSignedCastedToUnsigned() local
253 s += temp; in testDotProdComplexSignedCastedToUnsigned()
263 int temp = ((int)(a[i])) * ((int)(b[i])); in testDotProdSignedToInt() local
264 s += temp; in testDotProdSignedToInt()
274 int temp = (short)(x) * b[i]; in testDotProdParamSigned() local
275 s += temp; in testDotProdParamSigned()
285 int temp = (char)(x) * b[i]; in testDotProdParamUnsigned() local
286 s += temp; in testDotProdParamUnsigned()
296 int temp = b[i] * (x); in testDotProdIntParam() local
297 s += temp; in testDotProdIntParam()
307 int temp = ((char)(a[i])) * ((char)(b[i])); in testDotProdSignedToChar() local
308 s += temp; in testDotProdSignedToChar()
320 short temp = (short)(a[i] * b[i]); in testDotProdSimpleMulCastedToSigned() local
321 s += temp; in testDotProdSimpleMulCastedToSigned()
332 char temp = (char)(a[i] * b[i]); in testDotProdSimpleMulCastedToUnsigned() local
333 s += temp; in testDotProdSimpleMulCastedToUnsigned()
343 short temp = (short)(a[i] * b[i]); in testDotProdSimpleUnsignedMulCastedToSigned() local
344 s += temp; in testDotProdSimpleUnsignedMulCastedToSigned()
354 char temp = (char)(a[i] * b[i]); in testDotProdSimpleUnsignedMulCastedToUnsigned() local
355 s += temp; in testDotProdSimpleUnsignedMulCastedToUnsigned()
365 short temp = (short)(a[i] * b[i]); in testDotProdSimpleCastedToShort() local
366 s += temp; in testDotProdSimpleCastedToShort()
376 char temp = (char)(a[i] * b[i]); in testDotProdSimpleCastedToChar() local
377 s += temp; in testDotProdSimpleCastedToChar()
387 short temp = (short)(a[i] * b[i]); in testDotProdSimpleUnsignedCastedToShort() local
388 s += temp; in testDotProdSimpleUnsignedCastedToShort()
398 char temp = (char)(a[i] * b[i]); in testDotProdSimpleUnsignedCastedToChar() local
399 s += temp; in testDotProdSimpleUnsignedCastedToChar()
409 long temp = (long)(a[i] * b[i]); in testDotProdSimpleUnsignedCastedToLong() local
410 s += temp; in testDotProdSimpleUnsignedCastedToLong()
422 int temp = ((byte)(a[i])) * ((byte)(b[i])); in testDotProdSignedNarrowerSigned() local
423 s += temp; in testDotProdSignedNarrowerSigned()
433 int temp = (a[i] & 0xff) * (b[i] & 0xff); in testDotProdSignedNarrowerUnsigned() local
434 s += temp; in testDotProdSignedNarrowerUnsigned()
444 int temp = ((byte)(a[i])) * ((byte)(b[i])); in testDotProdUnsignedNarrowerSigned() local
445 s += temp; in testDotProdUnsignedNarrowerSigned()
455 int temp = (a[i] & 0xff) * (b[i] & 0xff); in testDotProdUnsignedNarrowerUnsigned() local
456 s += temp; in testDotProdUnsignedNarrowerUnsigned()
466 int temp = a[i] * b[i]; in testDotProdUnsignedSigned() local
467 s += temp; in testDotProdUnsignedSigned()