Lines Matching refs:input1

21 	const uint16_t *input1, const uint16_t *input2, const uint16_t *ref,  in test_zdsp_add_f16()  argument
31 zdsp_add_f16((float16_t *)input1, (float16_t *)input2, output, length); in test_zdsp_add_f16()
54 static void test_zdsp_add_f16_in_place(const uint16_t *input1, const uint16_t *input2, in test_zdsp_add_f16_in_place() argument
64 memcpy(output, (float16_t *)input1, length * sizeof(float16_t)); in test_zdsp_add_f16_in_place()
87 const uint16_t *input1, const uint16_t *input2, const uint16_t *ref, in test_zdsp_sub_f16() argument
97 zdsp_sub_f16((float16_t *)input1, (float16_t *)input2, output, length); in test_zdsp_sub_f16()
120 static void test_zdsp_sub_f16_in_place(const uint16_t *input1, const uint16_t *input2, in test_zdsp_sub_f16_in_place() argument
130 memcpy(output, (float16_t *)input1, length * sizeof(float16_t)); in test_zdsp_sub_f16_in_place()
153 const uint16_t *input1, const uint16_t *input2, const uint16_t *ref, in test_zdsp_mult_f16() argument
163 zdsp_mult_f16((float16_t *)input1, (float16_t *)input2, output, length); in test_zdsp_mult_f16()
186 static void test_zdsp_mult_f16_in_place(const uint16_t *input1, const uint16_t *input2, in test_zdsp_mult_f16_in_place() argument
196 memcpy(output, (float16_t *)input1, length * sizeof(float16_t)); in test_zdsp_mult_f16_in_place()
219 const uint16_t *input1, const uint16_t *ref, size_t length) in test_zdsp_negate_f16() argument
228 zdsp_negate_f16((float16_t *)input1, output, length); in test_zdsp_negate_f16()
251 static void test_zdsp_negate_f16_in_place(const uint16_t *input1, const uint16_t *ref, in test_zdsp_negate_f16_in_place() argument
261 memcpy(output, (float16_t *)input1, length * sizeof(float16_t)); in test_zdsp_negate_f16_in_place()
284 const uint16_t *input1, float16_t scalar, const uint16_t *ref, in test_zdsp_offset_f16() argument
294 zdsp_offset_f16((float16_t *)input1, scalar, output, length); in test_zdsp_offset_f16()
317 static void test_zdsp_offset_f16_in_place(const uint16_t *input1, float16_t scalar, in test_zdsp_offset_f16_in_place() argument
327 memcpy(output, (float16_t *)input1, length * sizeof(float16_t)); in test_zdsp_offset_f16_in_place()
352 const uint16_t *input1, float16_t scalar, const uint16_t *ref, in test_zdsp_scale_f16() argument
362 zdsp_scale_f16((float16_t *)input1, scalar, output, length); in test_zdsp_scale_f16()
385 static void test_zdsp_scale_f16_in_place(const uint16_t *input1, float16_t scalar, in test_zdsp_scale_f16_in_place() argument
395 memcpy(output, (float16_t *)input1, length * sizeof(float16_t)); in test_zdsp_scale_f16_in_place()
418 const uint16_t *input1, const uint16_t *input2, const uint16_t *ref, in test_zdsp_dot_prod_f16() argument
429 (float16_t *)input1, (float16_t *)input2, length, &output[0]); in test_zdsp_dot_prod_f16()
453 const uint16_t *input1, const uint16_t *ref, size_t length) in test_zdsp_abs_f16() argument
462 zdsp_abs_f16((float16_t *)input1, output, length); in test_zdsp_abs_f16()
484 static void test_zdsp_abs_f16_in_place(const uint16_t *input1, const uint16_t *ref, size_t length) in test_zdsp_abs_f16_in_place() argument
493 memcpy(output, (float16_t *)input1, length * sizeof(float16_t)); in test_zdsp_abs_f16_in_place()