Lines Matching refs:output

26 	float32_t *output;  in ZTEST()  local
29 output = malloc(length * sizeof(float32_t)); in ZTEST()
30 zassert_not_null(output, ASSERT_MSG_BUFFER_ALLOC_FAILED); in ZTEST()
34 output[index] = arm_cos_f32(((float32_t *)in_angles)[index]); in ZTEST()
39 test_snr_error_f32(length, output, (float32_t *)ref_cos, in ZTEST()
44 test_close_error_f32(length, output, (float32_t *)ref_cos, in ZTEST()
49 free(output); in ZTEST()
56 float32_t *output; in ZTEST() local
59 output = malloc(length * sizeof(float32_t)); in ZTEST()
60 zassert_not_null(output, ASSERT_MSG_BUFFER_ALLOC_FAILED); in ZTEST()
64 output[index] = arm_sin_f32(((float32_t *)in_angles)[index]); in ZTEST()
69 test_snr_error_f32(length, output, (float32_t *)ref_sin, in ZTEST()
74 test_close_error_f32(length, output, (float32_t *)ref_sin, in ZTEST()
79 free(output); in ZTEST()
87 float32_t *output; in ZTEST() local
90 output = malloc(length * sizeof(float32_t)); in ZTEST()
91 zassert_not_null(output, ASSERT_MSG_BUFFER_ALLOC_FAILED); in ZTEST()
96 ((float32_t *)in_sqrt)[index], &output[index]); in ZTEST()
111 test_snr_error_f32(length, output, (float32_t *)ref_sqrt, in ZTEST()
116 test_close_error_f32(length, output, (float32_t *)ref_sqrt, in ZTEST()
121 free(output); in ZTEST()
127 float32_t *output; in test_arm_vlog_f32() local
130 output = malloc(length * sizeof(float32_t)); in test_arm_vlog_f32()
131 zassert_not_null(output, ASSERT_MSG_BUFFER_ALLOC_FAILED); in test_arm_vlog_f32()
134 arm_vlog_f32((float32_t *)input1, output, length); in test_arm_vlog_f32()
138 test_snr_error_f32(length, output, (float32_t *)ref, in test_arm_vlog_f32()
143 test_close_error_f32(length, output, (float32_t *)ref, in test_arm_vlog_f32()
148 free(output); in test_arm_vlog_f32()
159 float32_t *output; in test_arm_vexp_f32() local
162 output = malloc(length * sizeof(float32_t)); in test_arm_vexp_f32()
163 zassert_not_null(output, ASSERT_MSG_BUFFER_ALLOC_FAILED); in test_arm_vexp_f32()
166 arm_vexp_f32((float32_t *)input1, output, length); in test_arm_vexp_f32()
170 test_snr_error_f32(length, output, (float32_t *)ref, in test_arm_vexp_f32()
175 test_close_error_f32(length, output, (float32_t *)ref, in test_arm_vexp_f32()
180 free(output); in test_arm_vexp_f32()