Lines Matching refs:a

28   private static void test_no_hadd_short2short(short[] a, short[] out) {  in test_no_hadd_short2short()  argument
29 int min_length = Math.min(out.length, a.length); in test_no_hadd_short2short()
31 out[i] = (short) (a[i] >> 1); in test_no_hadd_short2short()
40 private static void test_no_hadd_short2short_logical(short[] a, short[] out) { in test_no_hadd_short2short_logical() argument
41 int min_length = Math.min(out.length, a.length); in test_no_hadd_short2short_logical()
43 out[i] = (short) (a[i] >>> 1); in test_no_hadd_short2short_logical()
52 private static void test_no_hadd_int2short(int[] a, short[] out) { in test_no_hadd_int2short() argument
53 int min_length = Math.min(out.length, a.length); in test_no_hadd_int2short()
55 out[i] = (short) (a[i] >> 1); in test_no_hadd_int2short()
66 private static void test_no_hadd_int2int(int[] a, int[] out) { in test_no_hadd_int2int() argument
67 int min_length = Math.min(out.length, a.length); in test_no_hadd_int2int()
69 out[i] = a[i] >> 1; in test_no_hadd_int2int()
81 private static void test_no_hadd_sum_casted(short[] a, short[] b, short[] out) { in test_no_hadd_sum_casted() argument
82 int min_length = Math.min(out.length, Math.min(a.length, b.length)); in test_no_hadd_sum_casted()
84 out[i] = (short) (((short) (a[i] + b[i])) >> 1); in test_no_hadd_sum_casted()
93 private static void test_no_hadd_sum_casted_ints(int[] a, int[] b, int[] out) { in test_no_hadd_sum_casted_ints() argument
94 int min_length = Math.min(out.length, Math.min(a.length, b.length)); in test_no_hadd_sum_casted_ints()
96 out[i] = (short) ((short) (a[i] + b[i]) >> 1); in test_no_hadd_sum_casted_ints()
105 private static void test_no_hadd_sum_casted_plus_const(short[] a, short[] b, short[] out) { in test_no_hadd_sum_casted_plus_const() argument
106 int min_length = Math.min(out.length, Math.min(a.length, b.length)); in test_no_hadd_sum_casted_plus_const()
108 out[i] = (short) (((short) (a[i] + b[i]) + 1) >> 1); in test_no_hadd_sum_casted_plus_const()