Lines Matching refs:q31_t

17 #define ABS_ERROR_THRESH_Q31	((q31_t)4)
20 static void test_zdsp_add_q31(const DSP_DATA q31_t *input1, const DSP_DATA q31_t *input2, in test_zdsp_add_q31()
21 const q31_t *ref, size_t length) in test_zdsp_add_q31()
23 DSP_DATA q31_t *output; in test_zdsp_add_q31()
26 output = (DSP_DATA q31_t *)malloc(length * sizeof(q31_t)); in test_zdsp_add_q31()
53 static void test_zdsp_add_q31_in_place(const DSP_DATA q31_t *input1, const DSP_DATA q31_t *input2, in test_zdsp_add_q31_in_place()
54 const q31_t *ref, size_t length) in test_zdsp_add_q31_in_place()
56 DSP_DATA q31_t *output; in test_zdsp_add_q31_in_place()
59 output = (DSP_DATA q31_t *)malloc(length * sizeof(q31_t)); in test_zdsp_add_q31_in_place()
63 memcpy(output, input1, length * sizeof(q31_t)); in test_zdsp_add_q31_in_place()
89 static void test_zdsp_sub_q31(const DSP_DATA q31_t *input1, const DSP_DATA q31_t *input2, in test_zdsp_sub_q31()
90 const q31_t *ref, size_t length) in test_zdsp_sub_q31()
92 DSP_DATA q31_t *output; in test_zdsp_sub_q31()
95 output = (DSP_DATA q31_t *)malloc(length * sizeof(q31_t)); in test_zdsp_sub_q31()
122 static void test_zdsp_sub_q31_in_place(const DSP_DATA q31_t *input1, const DSP_DATA q31_t *input2, in test_zdsp_sub_q31_in_place()
123 const q31_t *ref, size_t length) in test_zdsp_sub_q31_in_place()
125 DSP_DATA q31_t *output; in test_zdsp_sub_q31_in_place()
128 output = (DSP_DATA q31_t *)malloc(length * sizeof(q31_t)); in test_zdsp_sub_q31_in_place()
132 memcpy(output, input1, length * sizeof(q31_t)); in test_zdsp_sub_q31_in_place()
158 static void test_zdsp_mult_q31(const DSP_DATA q31_t *input1, const DSP_DATA q31_t *input2, in test_zdsp_mult_q31()
159 const q31_t *ref, size_t length) in test_zdsp_mult_q31()
161 DSP_DATA q31_t *output; in test_zdsp_mult_q31()
164 output = (DSP_DATA q31_t *)malloc(length * sizeof(q31_t)); in test_zdsp_mult_q31()
191 static void test_zdsp_mult_q31_in_place(const DSP_DATA q31_t *input1, const DSP_DATA q31_t *input2, in test_zdsp_mult_q31_in_place()
192 const q31_t *ref, size_t length) in test_zdsp_mult_q31_in_place()
194 DSP_DATA q31_t *output; in test_zdsp_mult_q31_in_place()
197 output = (DSP_DATA q31_t *)malloc(length * sizeof(q31_t)); in test_zdsp_mult_q31_in_place()
201 memcpy(output, input1, length * sizeof(q31_t)); in test_zdsp_mult_q31_in_place()
225 static void test_zdsp_negate_q31(const DSP_DATA q31_t *input1, const q31_t *ref, size_t length) in test_zdsp_negate_q31()
227 DSP_DATA q31_t *output; in test_zdsp_negate_q31()
230 output = (DSP_DATA q31_t *)malloc(length * sizeof(q31_t)); in test_zdsp_negate_q31()
256 static void test_zdsp_negate_q31_in_place(const DSP_DATA q31_t *input1, const q31_t *ref, in test_zdsp_negate_q31_in_place()
259 DSP_DATA q31_t *output; in test_zdsp_negate_q31_in_place()
262 output = (DSP_DATA q31_t *)malloc(length * sizeof(q31_t)); in test_zdsp_negate_q31_in_place()
266 memcpy(output, input1, length * sizeof(q31_t)); in test_zdsp_negate_q31_in_place()
290 static void test_zdsp_offset_q31(const DSP_DATA q31_t *input1, q31_t scalar, const q31_t *ref, in test_zdsp_offset_q31()
293 DSP_DATA q31_t *output; in test_zdsp_offset_q31()
296 output = (DSP_DATA q31_t *)malloc(length * sizeof(q31_t)); in test_zdsp_offset_q31()
325 static void test_zdsp_offset_q31_in_place(const DSP_DATA q31_t *input1, q31_t scalar, in test_zdsp_offset_q31_in_place()
326 const q31_t *ref, size_t length) in test_zdsp_offset_q31_in_place()
328 DSP_DATA q31_t *output; in test_zdsp_offset_q31_in_place()
331 output = (DSP_DATA q31_t *)malloc(length * sizeof(q31_t)); in test_zdsp_offset_q31_in_place()
335 memcpy(output, input1, length * sizeof(q31_t)); in test_zdsp_offset_q31_in_place()
364 static void test_zdsp_scale_q31(const DSP_DATA q31_t *input1, q31_t scalar, const q31_t *ref, in test_zdsp_scale_q31()
367 DSP_DATA q31_t *output; in test_zdsp_scale_q31()
370 output = (DSP_DATA q31_t *)malloc(length * sizeof(q31_t)); in test_zdsp_scale_q31()
397 static void test_zdsp_scale_q31_in_place(const DSP_DATA q31_t *input1, q31_t scalar, in test_zdsp_scale_q31_in_place()
398 const q31_t *ref, size_t length) in test_zdsp_scale_q31_in_place()
400 DSP_DATA q31_t *output; in test_zdsp_scale_q31_in_place()
403 output = (DSP_DATA q31_t *)malloc(length * sizeof(q31_t)); in test_zdsp_scale_q31_in_place()
407 memcpy(output, input1, length * sizeof(q31_t)); in test_zdsp_scale_q31_in_place()
434 static void test_zdsp_dot_prod_q31(const DSP_DATA q31_t *input1, const DSP_DATA q31_t *input2, in test_zdsp_dot_prod_q31()
465 static void test_zdsp_abs_q31(const DSP_DATA q31_t *input1, const q31_t *ref, size_t length) in test_zdsp_abs_q31()
467 DSP_DATA q31_t *output; in test_zdsp_abs_q31()
470 output = (DSP_DATA q31_t *)malloc(length * sizeof(q31_t)); in test_zdsp_abs_q31()
494 static void test_zdsp_abs_q31_in_place(const DSP_DATA q31_t *input1, const q31_t *ref, in test_zdsp_abs_q31_in_place()
497 DSP_DATA q31_t *output; in test_zdsp_abs_q31_in_place()
500 output = (DSP_DATA q31_t *)malloc(length * sizeof(q31_t)); in test_zdsp_abs_q31_in_place()
504 memcpy(output, input1, length * sizeof(q31_t)); in test_zdsp_abs_q31_in_place()
526 static void test_zdsp_shift_q31(const DSP_DATA q31_t *input1, const q31_t *ref, size_t length) in test_zdsp_shift_q31()
528 DSP_DATA q31_t *output; in test_zdsp_shift_q31()
531 output = (DSP_DATA q31_t *)malloc(length * sizeof(q31_t)); in test_zdsp_shift_q31()
554 static void test_zdsp_shift_q31_in_place(const DSP_DATA q31_t *input1, const q31_t *ref, in test_zdsp_shift_q31_in_place()
557 DSP_DATA q31_t *output; in test_zdsp_shift_q31_in_place()
560 output = (DSP_DATA q31_t *)malloc(length * sizeof(q31_t)); in test_zdsp_shift_q31_in_place()
564 memcpy(output, input1, length * sizeof(q31_t)); in test_zdsp_shift_q31_in_place()
621 memcpy(output, input1, length * sizeof(q31_t)); in test_zdsp_and_u32_in_place()
675 memcpy(output, input1, length * sizeof(q31_t)); in test_zdsp_or_u32_in_place()
726 memcpy(output, input1, length * sizeof(q31_t)); in test_zdsp_not_u32_in_place()
777 memcpy(output, input1, length * sizeof(q31_t)); in test_zdsp_xor_u32_in_place()
796 static void test_zdsp_clip_q31(const DSP_DATA q31_t *input, const q31_t *ref, q31_t min, q31_t max, in test_zdsp_clip_q31()
799 DSP_DATA q31_t *output; in test_zdsp_clip_q31()
802 output = (DSP_DATA q31_t *)malloc(length * sizeof(q31_t)); in test_zdsp_clip_q31()
824 static void test_zdsp_clip_q31_in_place(const DSP_DATA q31_t *input, const q31_t *ref, q31_t min, in test_zdsp_clip_q31_in_place()
825 q31_t max, size_t length) in test_zdsp_clip_q31_in_place()
827 DSP_DATA q31_t *output; in test_zdsp_clip_q31_in_place()
830 output = (DSP_DATA q31_t *)malloc(length * sizeof(q31_t)); in test_zdsp_clip_q31_in_place()
834 memcpy(output, input, length * sizeof(q31_t)); in test_zdsp_clip_q31_in_place()