Lines Matching full:length
21 static void test_arm_copy_q7(const q7_t *input1, size_t length) in test_arm_copy_q7() argument
26 output = malloc(length * sizeof(q7_t)); in test_arm_copy_q7()
30 arm_copy_q7(input1, output, length); in test_arm_copy_q7()
34 test_equal_q7(length, input1, output), in test_arm_copy_q7()
45 static void test_arm_fill_q7(size_t length) in test_arm_fill_q7() argument
52 output = malloc(length * sizeof(q7_t)); in test_arm_fill_q7()
56 arm_fill_q7(val, output, length); in test_arm_fill_q7()
59 for (index = 0; index < length; index++) { in test_arm_fill_q7()
73 const q7_t *input1, const uint32_t *ref, size_t length) in test_arm_q7_to_float() argument
78 output = malloc(length * sizeof(float32_t)); in test_arm_q7_to_float()
82 arm_q7_to_float(input1, output, length); in test_arm_q7_to_float()
86 test_close_error_f32(length, (float32_t *)ref, output, in test_arm_q7_to_float()
99 const q7_t *input1, const q31_t *ref, size_t length) in test_arm_q7_to_q31() argument
104 output = malloc(length * sizeof(q31_t)); in test_arm_q7_to_q31()
108 arm_q7_to_q31(input1, output, length); in test_arm_q7_to_q31()
112 test_near_equal_q31(length, ref, output, ABS_ERROR_THRESH_Q31), in test_arm_q7_to_q31()
124 const q7_t *input1, const q15_t *ref, size_t length) in test_arm_q7_to_q15() argument
129 output = malloc(length * sizeof(q15_t)); in test_arm_q7_to_q15()
133 arm_q7_to_q15(input1, output, length); in test_arm_q7_to_q15()
137 test_near_equal_q15(length, ref, output, ABS_ERROR_THRESH_Q15), in test_arm_q7_to_q15()