Lines Matching full:length

24 	const q15_t *input1, const q15_t *ref, size_t length)  in test_arm_cmplx_conj_q15()  argument
29 /* Complex number buffer length is twice the data length */ in test_arm_cmplx_conj_q15()
30 buf_length = 2 * length; in test_arm_cmplx_conj_q15()
37 arm_cmplx_conj_q15(input1, output, length); in test_arm_cmplx_conj_q15()
59 size_t length) in test_arm_cmplx_dot_prod_q15() argument
68 arm_cmplx_dot_prod_q15(input1, input2, length, &output[0], &output[1]); in test_arm_cmplx_dot_prod_q15()
91 const q15_t *input1, const q15_t *ref, size_t length) in test_arm_cmplx_mag_q15() argument
96 output = malloc(length * sizeof(q15_t)); in test_arm_cmplx_mag_q15()
100 arm_cmplx_mag_q15(input1, output, length); in test_arm_cmplx_mag_q15()
104 test_snr_error_q15(length, output, ref, SNR_ERROR_THRESH_HIGH), in test_arm_cmplx_mag_q15()
108 test_near_equal_q15(length, output, ref, ABS_ERROR_THRESH_Q15), in test_arm_cmplx_mag_q15()
120 const q15_t *input1, const q15_t *ref, size_t length) in test_arm_cmplx_mag_squared_q15() argument
125 output = malloc(length * sizeof(q15_t)); in test_arm_cmplx_mag_squared_q15()
129 arm_cmplx_mag_squared_q15(input1, output, length); in test_arm_cmplx_mag_squared_q15()
133 test_snr_error_q15(length, output, ref, SNR_ERROR_THRESH), in test_arm_cmplx_mag_squared_q15()
137 test_near_equal_q15(length, output, ref, ABS_ERROR_THRESH_Q15), in test_arm_cmplx_mag_squared_q15()
150 size_t length) in test_arm_cmplx_mult_cmplx_q15() argument
155 /* Complex number buffer length is twice the data length */ in test_arm_cmplx_mult_cmplx_q15()
156 buf_length = 2 * length; in test_arm_cmplx_mult_cmplx_q15()
163 arm_cmplx_mult_cmplx_q15(input1, input2, output, length); in test_arm_cmplx_mult_cmplx_q15()
188 size_t length) in test_arm_cmplx_mult_real_q15() argument
193 /* Complex number buffer length is twice the data length */ in test_arm_cmplx_mult_real_q15()
194 buf_length = 2 * length; in test_arm_cmplx_mult_real_q15()
201 arm_cmplx_mult_real_q15(input1, input2, output, length); in test_arm_cmplx_mult_real_q15()