Lines Matching defs:temp

54       int temp = a[i] * b[i];  in testDotProdSimple()  local
95 int temp = ((short)(a[i] + 1)) * ((short)(b[i] + 1)); in testDotProdComplex() local
129 int temp = a[i] * b[i]; in testDotProdSimpleUnsigned() local
170 int temp = ((char)(a[i] + 1)) * ((char)(b[i] + 1)); in testDotProdComplexUnsigned() local
211 int temp = ((short)(a[i] + 1)) * ((short)(b[i] + 1)); in testDotProdComplexUnsignedCastedToSigned() local
252 int temp = ((char)(a[i] + 1)) * ((char)(b[i] + 1)); in testDotProdComplexSignedCastedToUnsigned() local
263 int temp = ((int)(a[i])) * ((int)(b[i])); in testDotProdSignedToInt() local
274 int temp = (short)(x) * b[i]; in testDotProdParamSigned() local
285 int temp = (char)(x) * b[i]; in testDotProdParamUnsigned() local
296 int temp = b[i] * (x); in testDotProdIntParam() local
307 int temp = ((char)(a[i])) * ((char)(b[i])); in testDotProdSignedToChar() local
320 short temp = (short)(a[i] * b[i]); in testDotProdSimpleMulCastedToSigned() local
332 char temp = (char)(a[i] * b[i]); in testDotProdSimpleMulCastedToUnsigned() local
343 short temp = (short)(a[i] * b[i]); in testDotProdSimpleUnsignedMulCastedToSigned() local
354 char temp = (char)(a[i] * b[i]); in testDotProdSimpleUnsignedMulCastedToUnsigned() local
365 short temp = (short)(a[i] * b[i]); in testDotProdSimpleCastedToShort() local
376 char temp = (char)(a[i] * b[i]); in testDotProdSimpleCastedToChar() local
387 short temp = (short)(a[i] * b[i]); in testDotProdSimpleUnsignedCastedToShort() local
398 char temp = (char)(a[i] * b[i]); in testDotProdSimpleUnsignedCastedToChar() local
409 long temp = (long)(a[i] * b[i]); in testDotProdSimpleUnsignedCastedToLong() local
422 int temp = ((byte)(a[i])) * ((byte)(b[i])); in testDotProdSignedNarrowerSigned() local
433 int temp = (a[i] & 0xff) * (b[i] & 0xff); in testDotProdSignedNarrowerUnsigned() local
444 int temp = ((byte)(a[i])) * ((byte)(b[i])); in testDotProdUnsignedNarrowerSigned() local
455 int temp = (a[i] & 0xff) * (b[i] & 0xff); in testDotProdUnsignedNarrowerUnsigned() local
466 int temp = a[i] * b[i]; in testDotProdUnsignedSigned() local