Lines Matching refs:b
60 public static final int testDotProdSimple(short[] a, short[] b) { in testDotProdSimple() argument
62 for (int i = 0; i < b.length; i++) { in testDotProdSimple()
63 int temp = a[i] * b[i]; in testDotProdSimple()
110 public static final int testDotProdComplex(short[] a, short[] b) { in testDotProdComplex() argument
112 for (int i = 0; i < b.length; i++) { in testDotProdComplex()
113 int temp = ((short)(a[i] + 1)) * ((short)(b[i] + 1)); in testDotProdComplex()
153 public static final int testDotProdSimpleUnsigned(char[] a, char[] b) { in testDotProdSimpleUnsigned() argument
155 for (int i = 0; i < b.length; i++) { in testDotProdSimpleUnsigned()
156 int temp = a[i] * b[i]; in testDotProdSimpleUnsigned()
203 public static final int testDotProdComplexUnsigned(char[] a, char[] b) { in testDotProdComplexUnsigned() argument
205 for (int i = 0; i < b.length; i++) { in testDotProdComplexUnsigned()
206 int temp = ((char)(a[i] + 1)) * ((char)(b[i] + 1)); in testDotProdComplexUnsigned()
253 public static final int testDotProdComplexUnsignedCastedToSigned(char[] a, char[] b) { in testDotProdComplexUnsignedCastedToSigned() argument
255 for (int i = 0; i < b.length; i++) { in testDotProdComplexUnsignedCastedToSigned()
256 int temp = ((short)(a[i] + 1)) * ((short)(b[i] + 1)); in testDotProdComplexUnsignedCastedToSigned()
303 public static final int testDotProdComplexSignedCastedToUnsigned(short[] a, short[] b) { in testDotProdComplexSignedCastedToUnsigned() argument
305 for (int i = 0; i < b.length; i++) { in testDotProdComplexSignedCastedToUnsigned()
306 int temp = ((char)(a[i] + 1)) * ((char)(b[i] + 1)); in testDotProdComplexSignedCastedToUnsigned()
323 public static final int testDotProdSignedToInt(short[] a, short[] b) { in testDotProdSignedToInt() argument
325 for (int i = 0; i < b.length; i++) { in testDotProdSignedToInt()
326 int temp = ((int)(a[i])) * ((int)(b[i])); in testDotProdSignedToInt()
343 public static final int testDotProdParamSigned(int x, short[] b) { in testDotProdParamSigned() argument
345 for (int i = 0; i < b.length; i++) { in testDotProdParamSigned()
346 int temp = (short)(x) * b[i]; in testDotProdParamSigned()
363 public static final int testDotProdParamUnsigned(int x, char[] b) { in testDotProdParamUnsigned() argument
365 for (int i = 0; i < b.length; i++) { in testDotProdParamUnsigned()
366 int temp = (char)(x) * b[i]; in testDotProdParamUnsigned()
374 public static final int testDotProdIntParam(int x, short[] b) { in testDotProdIntParam() argument
376 for (int i = 0; i < b.length; i++) { in testDotProdIntParam()
377 int temp = b[i] * (x); in testDotProdIntParam()
394 public static final int testDotProdSignedToChar(short[] a, short[] b) { in testDotProdSignedToChar() argument
396 for (int i = 0; i < b.length; i++) { in testDotProdSignedToChar()
397 int temp = ((char)(a[i])) * ((char)(b[i])); in testDotProdSignedToChar()
407 public static final int testDotProdSimpleMulCastedToSigned(short[] a, short[] b) { in testDotProdSimpleMulCastedToSigned() argument
409 for (int i = 0; i < b.length; i++) { in testDotProdSimpleMulCastedToSigned()
410 short temp = (short)(a[i] * b[i]); in testDotProdSimpleMulCastedToSigned()
419 public static final int testDotProdSimpleMulCastedToUnsigned(short[] a, short[] b) { in testDotProdSimpleMulCastedToUnsigned() argument
421 for (int i = 0; i < b.length; i++) { in testDotProdSimpleMulCastedToUnsigned()
422 char temp = (char)(a[i] * b[i]); in testDotProdSimpleMulCastedToUnsigned()
430 public static final int testDotProdSimpleUnsignedMulCastedToSigned(char[] a, char[] b) { in testDotProdSimpleUnsignedMulCastedToSigned() argument
432 for (int i = 0; i < b.length; i++) { in testDotProdSimpleUnsignedMulCastedToSigned()
433 short temp = (short)(a[i] * b[i]); in testDotProdSimpleUnsignedMulCastedToSigned()
441 public static final int testDotProdSimpleUnsignedMulCastedToUnsigned(char[] a, char[] b) { in testDotProdSimpleUnsignedMulCastedToUnsigned() argument
443 for (int i = 0; i < b.length; i++) { in testDotProdSimpleUnsignedMulCastedToUnsigned()
444 char temp = (char)(a[i] * b[i]); in testDotProdSimpleUnsignedMulCastedToUnsigned()
452 public static final int testDotProdSimpleCastedToShort(short[] a, short[] b) { in testDotProdSimpleCastedToShort() argument
454 for (int i = 0; i < b.length; i++) { in testDotProdSimpleCastedToShort()
455 short temp = (short)(a[i] * b[i]); in testDotProdSimpleCastedToShort()
463 public static final int testDotProdSimpleCastedToChar(short[] a, short[] b) { in testDotProdSimpleCastedToChar() argument
465 for (int i = 0; i < b.length; i++) { in testDotProdSimpleCastedToChar()
466 char temp = (char)(a[i] * b[i]); in testDotProdSimpleCastedToChar()
474 public static final int testDotProdSimpleUnsignedCastedToShort(char[] a, char[] b) { in testDotProdSimpleUnsignedCastedToShort() argument
476 for (int i = 0; i < b.length; i++) { in testDotProdSimpleUnsignedCastedToShort()
477 short temp = (short)(a[i] * b[i]); in testDotProdSimpleUnsignedCastedToShort()
485 public static final int testDotProdSimpleUnsignedCastedToChar(char[] a, char[] b) { in testDotProdSimpleUnsignedCastedToChar() argument
487 for (int i = 0; i < b.length; i++) { in testDotProdSimpleUnsignedCastedToChar()
488 char temp = (char)(a[i] * b[i]); in testDotProdSimpleUnsignedCastedToChar()
496 public static final int testDotProdSimpleUnsignedCastedToLong(char[] a, char[] b) { in testDotProdSimpleUnsignedCastedToLong() argument
498 for (int i = 0; i < b.length; i++) { in testDotProdSimpleUnsignedCastedToLong()
499 long temp = (long)(a[i] * b[i]); in testDotProdSimpleUnsignedCastedToLong()
509 public static final int testDotProdSignedNarrowerSigned(short[] a, short[] b) { in testDotProdSignedNarrowerSigned() argument
511 for (int i = 0; i < b.length; i++) { in testDotProdSignedNarrowerSigned()
512 int temp = ((byte)(a[i])) * ((byte)(b[i])); in testDotProdSignedNarrowerSigned()
520 public static final int testDotProdSignedNarrowerUnsigned(short[] a, short[] b) { in testDotProdSignedNarrowerUnsigned() argument
522 for (int i = 0; i < b.length; i++) { in testDotProdSignedNarrowerUnsigned()
523 int temp = (a[i] & 0xff) * (b[i] & 0xff); in testDotProdSignedNarrowerUnsigned()
531 public static final int testDotProdUnsignedNarrowerSigned(char[] a, char[] b) { in testDotProdUnsignedNarrowerSigned() argument
533 for (int i = 0; i < b.length; i++) { in testDotProdUnsignedNarrowerSigned()
534 int temp = ((byte)(a[i])) * ((byte)(b[i])); in testDotProdUnsignedNarrowerSigned()
542 public static final int testDotProdUnsignedNarrowerUnsigned(char[] a, char[] b) { in testDotProdUnsignedNarrowerUnsigned() argument
544 for (int i = 0; i < b.length; i++) { in testDotProdUnsignedNarrowerUnsigned()
545 int temp = (a[i] & 0xff) * (b[i] & 0xff); in testDotProdUnsignedNarrowerUnsigned()
553 public static final int testDotProdUnsignedSigned(char[] a, short[] b) { in testDotProdUnsignedSigned() argument
555 for (int i = 0; i < b.length; i++) { in testDotProdUnsignedSigned()
556 int temp = a[i] * b[i]; in testDotProdUnsignedSigned()