Lines Matching refs:MAX_SIZE
34 #define MAX_SIZE (960)
39 LOCAL_ALIGNED(16, float, data0, [MAX_SIZE + 1024]);
40 LOCAL_ALIGNED(16, float, data1, [MAX_SIZE + 1024]);
54 randomize_float(data0, MAX_SIZE + 1024);
55 memcpy(data1, data0, (MAX_SIZE + 1024)*sizeof(float));
57 call_ref(data0 + offset, period, gains, MAX_SIZE);
58 call_new(data1 + offset, period, gains, MAX_SIZE);
60 if (!float_near_abs_eps_array(data0 + offset, data1 + offset, EPS, MAX_SIZE))
62 bench_new(data1 + offset, period, gains, MAX_SIZE);
67 LOCAL_ALIGNED(16, float, src, [FFALIGN(MAX_SIZE, 4)]);
68 LOCAL_ALIGNED(16, float, dst0, [FFALIGN(MAX_SIZE, 4)]);
69 LOCAL_ALIGNED(16, float, dst1, [FFALIGN(MAX_SIZE, 4)]);
74 randomize_float(src, MAX_SIZE);
76 coeff0 = call_ref(dst0, src, coeff0, MAX_SIZE);
77 coeff1 = call_new(dst1, src, coeff1, MAX_SIZE);
80 !float_near_abs_eps_array(dst0, dst1, EPS, MAX_SIZE))
82 bench_new(dst1, src, coeff1, MAX_SIZE);