Lines Matching full:length

23 	const q31_t *input1, const q31_t *ref, size_t length)  in test_arm_cmplx_conj_q31()  argument
28 /* Complex number buffer length is twice the data length */ in test_arm_cmplx_conj_q31()
29 buf_length = 2 * length; in test_arm_cmplx_conj_q31()
36 arm_cmplx_conj_q31(input1, output, length); in test_arm_cmplx_conj_q31()
58 size_t length) in test_arm_cmplx_dot_prod_q31() argument
67 arm_cmplx_dot_prod_q31(input1, input2, length, &output[0], &output[1]); in test_arm_cmplx_dot_prod_q31()
90 const q31_t *input1, const q31_t *ref, size_t length) in test_arm_cmplx_mag_q31() argument
95 output = malloc(length * sizeof(q31_t)); in test_arm_cmplx_mag_q31()
99 arm_cmplx_mag_q31(input1, output, length); in test_arm_cmplx_mag_q31()
103 test_snr_error_q31(length, output, ref, SNR_ERROR_THRESH), in test_arm_cmplx_mag_q31()
107 test_near_equal_q31(length, output, ref, ABS_ERROR_THRESH_Q31), in test_arm_cmplx_mag_q31()
119 const q31_t *input1, const q31_t *ref, size_t length) in test_arm_cmplx_mag_squared_q31() argument
124 output = malloc(length * sizeof(q31_t)); in test_arm_cmplx_mag_squared_q31()
128 arm_cmplx_mag_squared_q31(input1, output, length); in test_arm_cmplx_mag_squared_q31()
132 test_snr_error_q31(length, output, ref, SNR_ERROR_THRESH), in test_arm_cmplx_mag_squared_q31()
136 test_near_equal_q31(length, output, ref, ABS_ERROR_THRESH_Q31), in test_arm_cmplx_mag_squared_q31()
149 size_t length) in test_arm_cmplx_mult_cmplx_q31() argument
154 /* Complex number buffer length is twice the data length */ in test_arm_cmplx_mult_cmplx_q31()
155 buf_length = 2 * length; in test_arm_cmplx_mult_cmplx_q31()
162 arm_cmplx_mult_cmplx_q31(input1, input2, output, length); in test_arm_cmplx_mult_cmplx_q31()
187 size_t length) in test_arm_cmplx_mult_real_q31() argument
192 /* Complex number buffer length is twice the data length */ in test_arm_cmplx_mult_real_q31()
193 buf_length = 2 * length; in test_arm_cmplx_mult_real_q31()
200 arm_cmplx_mult_real_q31(input1, input2, output, length); in test_arm_cmplx_mult_real_q31()