Lines Matching refs:BUF_SIZE

26 #define BUF_SIZE (N * STRIDE)  macro
50 LOCAL_ALIGNED_16(INTFLOAT, dst0, [BUF_SIZE]); in test_add_squares()
51 LOCAL_ALIGNED_16(INTFLOAT, dst1, [BUF_SIZE]); in test_add_squares()
52 LOCAL_ALIGNED_16(INTFLOAT, src, [BUF_SIZE], [2]); in test_add_squares()
57 randomize((INTFLOAT *)src, BUF_SIZE * 2); in test_add_squares()
58 randomize(dst0, BUF_SIZE); in test_add_squares()
59 memcpy(dst1, dst0, BUF_SIZE * sizeof(INTFLOAT)); in test_add_squares()
60 call_ref(dst0, src, BUF_SIZE); in test_add_squares()
61 call_new(dst1, src, BUF_SIZE); in test_add_squares()
62 if (!float_near_abs_eps_array(dst0, dst1, EPS, BUF_SIZE)) in test_add_squares()
64 bench_new(dst1, src, BUF_SIZE); in test_add_squares()
69 LOCAL_ALIGNED_16(INTFLOAT, dst0, [BUF_SIZE], [2]); in test_mul_pair_single()
70 LOCAL_ALIGNED_16(INTFLOAT, dst1, [BUF_SIZE], [2]); in test_mul_pair_single()
71 LOCAL_ALIGNED_16(INTFLOAT, src0, [BUF_SIZE], [2]); in test_mul_pair_single()
72 LOCAL_ALIGNED_16(INTFLOAT, src1, [BUF_SIZE]); in test_mul_pair_single()
77 randomize((INTFLOAT *)src0, BUF_SIZE * 2); in test_mul_pair_single()
78 randomize(src1, BUF_SIZE); in test_mul_pair_single()
79 call_ref(dst0, src0, src1, BUF_SIZE); in test_mul_pair_single()
80 call_new(dst1, src0, src1, BUF_SIZE); in test_mul_pair_single()
81 if (!float_near_abs_eps_array((float *)dst0, (float *)dst1, EPS, BUF_SIZE * 2)) in test_mul_pair_single()
83 bench_new(dst1, src0, src1, BUF_SIZE); in test_mul_pair_single()
88 LOCAL_ALIGNED_16(INTFLOAT, dst0, [BUF_SIZE], [2]); in test_hybrid_analysis()
89 LOCAL_ALIGNED_16(INTFLOAT, dst1, [BUF_SIZE], [2]); in test_hybrid_analysis()
100 randomize((INTFLOAT *)dst0, BUF_SIZE * 2); in test_hybrid_analysis()
101 memcpy(dst1, dst0, BUF_SIZE * 2 * sizeof(INTFLOAT)); in test_hybrid_analysis()
106 if (!float_near_abs_eps_array((float *)dst0, (float *)dst1, EPS, BUF_SIZE * 2)) in test_hybrid_analysis()
188 LOCAL_ALIGNED_16(INTFLOAT, l, [BUF_SIZE], [2]); in test_stereo_interpolate()
189 LOCAL_ALIGNED_16(INTFLOAT, r, [BUF_SIZE], [2]); in test_stereo_interpolate()
190 LOCAL_ALIGNED_16(INTFLOAT, l0, [BUF_SIZE], [2]); in test_stereo_interpolate()
191 LOCAL_ALIGNED_16(INTFLOAT, r0, [BUF_SIZE], [2]); in test_stereo_interpolate()
192 LOCAL_ALIGNED_16(INTFLOAT, l1, [BUF_SIZE], [2]); in test_stereo_interpolate()
193 LOCAL_ALIGNED_16(INTFLOAT, r1, [BUF_SIZE], [2]); in test_stereo_interpolate()
200 randomize((INTFLOAT *)l, BUF_SIZE * 2); in test_stereo_interpolate()
201 randomize((INTFLOAT *)r, BUF_SIZE * 2); in test_stereo_interpolate()
205 memcpy(l0, l, BUF_SIZE * 2 * sizeof(INTFLOAT)); in test_stereo_interpolate()
206 memcpy(l1, l, BUF_SIZE * 2 * sizeof(INTFLOAT)); in test_stereo_interpolate()
207 memcpy(r0, r, BUF_SIZE * 2 * sizeof(INTFLOAT)); in test_stereo_interpolate()
208 memcpy(r1, r, BUF_SIZE * 2 * sizeof(INTFLOAT)); in test_stereo_interpolate()
220 call_ref(l0, r0, h, h_step, BUF_SIZE); in test_stereo_interpolate()
221 call_new(l1, r1, h, h_step, BUF_SIZE); in test_stereo_interpolate()
222 if (!float_near_abs_eps_array((float *)l0, (float *)l1, EPS, BUF_SIZE * 2) || in test_stereo_interpolate()
223 !float_near_abs_eps_array((float *)r0, (float *)r1, EPS, BUF_SIZE * 2)) in test_stereo_interpolate()
226 memcpy(l1, l, BUF_SIZE * 2 * sizeof(INTFLOAT)); in test_stereo_interpolate()
227 memcpy(r1, r, BUF_SIZE * 2 * sizeof(INTFLOAT)); in test_stereo_interpolate()
228 bench_new(l1, r1, h, h_step, BUF_SIZE); in test_stereo_interpolate()