Lines Matching refs:dst1
52 LOCAL_ALIGNED_16(INTFLOAT, dst1, [BUF_SIZE]); in test_add_squares()
60 memcpy(dst1, dst0, BUF_SIZE * sizeof(INTFLOAT)); in test_add_squares()
62 call_new(dst1, src, BUF_SIZE); in test_add_squares()
63 if (!float_near_abs_eps_array(dst0, dst1, EPS, BUF_SIZE)) in test_add_squares()
65 bench_new(dst1, src, BUF_SIZE); in test_add_squares()
71 LOCAL_ALIGNED_16(INTFLOAT, dst1, [BUF_SIZE], [2]); in test_mul_pair_single()
81 call_new(dst1, src0, src1, BUF_SIZE); in test_mul_pair_single()
82 if (!float_near_abs_eps_array((float *)dst0, (float *)dst1, EPS, BUF_SIZE * 2)) in test_mul_pair_single()
84 bench_new(dst1, src0, src1, BUF_SIZE); in test_mul_pair_single()
90 LOCAL_ALIGNED_16(INTFLOAT, dst1, [BUF_SIZE], [2]); in test_hybrid_analysis()
102 memcpy(dst1, dst0, BUF_SIZE * 2 * sizeof(INTFLOAT)); in test_hybrid_analysis()
105 call_new(dst1, in, filter, STRIDE, N); in test_hybrid_analysis()
107 if (!float_near_abs_eps_array((float *)dst0, (float *)dst1, EPS, BUF_SIZE * 2)) in test_hybrid_analysis()
109 bench_new(dst1, in, filter, STRIDE, N); in test_hybrid_analysis()