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