• Home
  • Raw
  • Download

Lines Matching refs:s

82     int s = 1;  in testDotProdSimple()  local
85 s += temp; in testDotProdSimple()
87 return s - 1; in testDotProdSimple()
144 int s = 1; in testDotProdComplex() local
147 s += temp; in testDotProdComplex()
149 return s - 1; in testDotProdComplex()
207 int s = 1; in testDotProdSimpleUnsigned() local
210 s += temp; in testDotProdSimpleUnsigned()
212 return s - 1; in testDotProdSimpleUnsigned()
269 int s = 1; in testDotProdComplexUnsigned() local
272 s += temp; in testDotProdComplexUnsigned()
274 return s - 1; in testDotProdComplexUnsigned()
331 int s = 1; in testDotProdComplexUnsignedCastToSigned() local
334 s += temp; in testDotProdComplexUnsignedCastToSigned()
336 return s - 1; in testDotProdComplexUnsignedCastToSigned()
393 int s = 1; in testDotProdComplexSignedCastToUnsigned() local
396 s += temp; in testDotProdComplexSignedCastToUnsigned()
398 return s - 1; in testDotProdComplexSignedCastToUnsigned()
404 int s = 1; in testDotProdSignedWidening() local
407 s += temp; in testDotProdSignedWidening()
409 return s - 1; in testDotProdSignedWidening()
415 int s = 1; in testDotProdParamSigned() local
418 s += temp; in testDotProdParamSigned()
420 return s - 1; in testDotProdParamSigned()
426 int s = 1; in testDotProdParamUnsigned() local
429 s += temp; in testDotProdParamUnsigned()
431 return s - 1; in testDotProdParamUnsigned()
439 int s = 1; in testDotProdIntParam() local
442 s += temp; in testDotProdIntParam()
444 return s - 1; in testDotProdIntParam()
450 int s = 1; in testDotProdSignedToChar() local
453 s += temp; in testDotProdSignedToChar()
455 return s - 1; in testDotProdSignedToChar()
463 int s = 1; in testDotProdSimpleCastToSignedByte() local
466 s += temp; in testDotProdSimpleCastToSignedByte()
468 return s - 1; in testDotProdSimpleCastToSignedByte()
474 int s = 1; in testDotProdSimpleCastToUnsignedByte() local
476 s += (a[i] * b[i]) & 0xff; in testDotProdSimpleCastToUnsignedByte()
478 return s - 1; in testDotProdSimpleCastToUnsignedByte()
484 int s = 1; in testDotProdSimpleUnsignedCastToSignedByte() local
487 s += temp; in testDotProdSimpleUnsignedCastToSignedByte()
489 return s - 1; in testDotProdSimpleUnsignedCastToSignedByte()
495 int s = 1; in testDotProdSimpleUnsignedCastToUnsignedByte() local
497 s += ((a[i] & 0xff) * (b[i] & 0xff)) & 0xff; in testDotProdSimpleUnsignedCastToUnsignedByte()
499 return s - 1; in testDotProdSimpleUnsignedCastToUnsignedByte()
505 int s = 1; in testDotProdSimpleCastToShort() local
508 s += temp; in testDotProdSimpleCastToShort()
510 return s - 1; in testDotProdSimpleCastToShort()
516 int s = 1; in testDotProdSimpleCastToChar() local
519 s += temp; in testDotProdSimpleCastToChar()
521 return s - 1; in testDotProdSimpleCastToChar()
527 int s = 1; in testDotProdSimpleUnsignedCastToShort() local
530 s += temp; in testDotProdSimpleUnsignedCastToShort()
532 return s - 1; in testDotProdSimpleUnsignedCastToShort()
538 int s = 1; in testDotProdSimpleUnsignedCastToChar() local
541 s += temp; in testDotProdSimpleUnsignedCastToChar()
543 return s - 1; in testDotProdSimpleUnsignedCastToChar()
549 int s = 1; in testDotProdSimpleUnsignedCastToLong() local
552 s += temp; in testDotProdSimpleUnsignedCastToLong()
554 return s - 1; in testDotProdSimpleUnsignedCastToLong()
560 int s = 1; in testDotProdUnsignedSigned() local
563 s += temp; in testDotProdUnsignedSigned()
565 return s - 1; in testDotProdUnsignedSigned()