Lines Matching refs:s

62     int s = 1;  in testDotProdSimple()  local
65 s += temp; in testDotProdSimple()
67 return s - 1; in testDotProdSimple()
103 int s = 1; in testDotProdComplex() local
106 s += temp; in testDotProdComplex()
108 return s - 1; in testDotProdComplex()
146 int s = 1; in testDotProdSimpleUnsigned() local
149 s += temp; in testDotProdSimpleUnsigned()
151 return s - 1; in testDotProdSimpleUnsigned()
187 int s = 1; in testDotProdComplexUnsigned() local
190 s += temp; in testDotProdComplexUnsigned()
192 return s - 1; in testDotProdComplexUnsigned()
228 int s = 1; in testDotProdComplexUnsignedCastedToSigned() local
231 s += temp; in testDotProdComplexUnsignedCastedToSigned()
233 return s - 1; in testDotProdComplexUnsignedCastedToSigned()
269 int s = 1; in testDotProdComplexSignedCastedToUnsigned() local
272 s += temp; in testDotProdComplexSignedCastedToUnsigned()
274 return s - 1; in testDotProdComplexSignedCastedToUnsigned()
280 int s = 1; in testDotProdSignedWidening() local
283 s += temp; in testDotProdSignedWidening()
285 return s - 1; in testDotProdSignedWidening()
291 int s = 1; in testDotProdParamSigned() local
294 s += temp; in testDotProdParamSigned()
296 return s - 1; in testDotProdParamSigned()
302 int s = 1; in testDotProdParamUnsigned() local
305 s += temp; in testDotProdParamUnsigned()
307 return s - 1; in testDotProdParamUnsigned()
315 int s = 1; in testDotProdIntParam() local
318 s += temp; in testDotProdIntParam()
320 return s - 1; in testDotProdIntParam()
326 int s = 1; in testDotProdSignedToChar() local
329 s += temp; in testDotProdSignedToChar()
331 return s - 1; in testDotProdSignedToChar()
339 int s = 1; in testDotProdSimpleCastedToSignedByte() local
342 s += temp; in testDotProdSimpleCastedToSignedByte()
344 return s - 1; in testDotProdSimpleCastedToSignedByte()
350 int s = 1; in testDotProdSimpleCastedToUnsignedByte() local
352 s += (a[i] * b[i]) & 0xff; in testDotProdSimpleCastedToUnsignedByte()
354 return s - 1; in testDotProdSimpleCastedToUnsignedByte()
360 int s = 1; in testDotProdSimpleUnsignedCastedToSignedByte() local
363 s += temp; in testDotProdSimpleUnsignedCastedToSignedByte()
365 return s - 1; in testDotProdSimpleUnsignedCastedToSignedByte()
371 int s = 1; in testDotProdSimpleUnsignedCastedToUnsignedByte() local
373 s += ((a[i] & 0xff) * (b[i] & 0xff)) & 0xff; in testDotProdSimpleUnsignedCastedToUnsignedByte()
375 return s - 1; in testDotProdSimpleUnsignedCastedToUnsignedByte()
381 int s = 1; in testDotProdSimpleCastedToShort() local
384 s += temp; in testDotProdSimpleCastedToShort()
386 return s - 1; in testDotProdSimpleCastedToShort()
392 int s = 1; in testDotProdSimpleCastedToChar() local
395 s += temp; in testDotProdSimpleCastedToChar()
397 return s - 1; in testDotProdSimpleCastedToChar()
403 int s = 1; in testDotProdSimpleUnsignedCastedToShort() local
406 s += temp; in testDotProdSimpleUnsignedCastedToShort()
408 return s - 1; in testDotProdSimpleUnsignedCastedToShort()
414 int s = 1; in testDotProdSimpleUnsignedCastedToChar() local
417 s += temp; in testDotProdSimpleUnsignedCastedToChar()
419 return s - 1; in testDotProdSimpleUnsignedCastedToChar()
425 int s = 1; in testDotProdSimpleUnsignedCastedToLong() local
428 s += temp; in testDotProdSimpleUnsignedCastedToLong()
430 return s - 1; in testDotProdSimpleUnsignedCastedToLong()
436 int s = 1; in testDotProdUnsignedSigned() local
439 s += temp; in testDotProdUnsignedSigned()
441 return s - 1; in testDotProdUnsignedSigned()