Lines Matching refs:odst

47     LOCAL_ALIGNED_32(float, odst, [LEN]);
54 call_new(odst, src0, src1, LEN);
57 if (!float_near_abs_eps(cdst[i], odst[i], t * 2 * FLT_EPSILON)) {
59 i, cdst[i], odst[i], cdst[i] - odst[i]);
64 bench_new(odst, src0, src1, LEN);
70 LOCAL_ALIGNED_32(double, odst, [LEN]);
77 call_new(odst, src0, src1, LEN);
80 if (!double_near_abs_eps(cdst[i], odst[i], t * 2 * DBL_EPSILON)) {
82 i, cdst[i], odst[i], cdst[i] - odst[i]);
87 bench_new(odst, src0, src1, LEN);
94 LOCAL_ALIGNED_32(float, odst, [LEN]);
101 call_new(odst, src0, src1, src2, LEN);
103 if (!float_near_abs_eps(cdst[i], odst[i], ARBITRARY_FMUL_ADD_CONST)) {
105 i, cdst[i], odst[i], cdst[i] - odst[i]);
110 bench_new(odst, src0, src1, src2, LEN);
116 LOCAL_ALIGNED_16(float, odst, [LEN]);
122 call_new(odst, src0, src1[0], LEN);
125 if (!float_near_abs_eps(cdst[i], odst[i], t * 2 * FLT_EPSILON)) {
127 i, cdst[i], odst[i], cdst[i] - odst[i]);
132 bench_new(odst, src0, src1[0], LEN);
139 LOCAL_ALIGNED_16(float, odst, [LEN]);
146 call_new(odst, src0, src1, win, LEN / 2);
148 if (!float_near_abs_eps(cdst[i], odst[i], ARBITRARY_FMUL_WINDOW_CONST)) {
150 i, cdst[i], odst[i], cdst[i] - odst[i]);
155 bench_new(odst, src0, src1, win, LEN / 2);
162 LOCAL_ALIGNED_32(float, odst, [LEN]);
168 memcpy(odst, src2, LEN * sizeof(*src2));
171 call_new(odst, src0, src1[0], LEN);
173 if (!float_near_abs_eps(cdst[i], odst[i], ARBITRARY_FMAC_SCALAR_CONST)) {
175 i, cdst[i], odst[i], cdst[i] - odst[i]);
180 memcpy(odst, src2, LEN * sizeof(*src2));
181 bench_new(odst, src0, src1[0], LEN);
187 LOCAL_ALIGNED_32(double, odst, [LEN]);
193 call_new(odst, src0, src1[0], LEN);
196 if (!double_near_abs_eps(cdst[i], odst[i], t * 2 * DBL_EPSILON)) {
198 cdst[i], odst[i], cdst[i] - odst[i]);
203 bench_new(odst, src0, src1[0], LEN);
210 LOCAL_ALIGNED_32(double, odst, [LEN]);
216 memcpy(odst, src2, LEN * sizeof(*src2));
218 call_new(odst, src0, src1[0], LEN);
220 if (!double_near_abs_eps(cdst[i], odst[i], ARBITRARY_DMAC_SCALAR_CONST)) {
222 i, cdst[i], odst[i], cdst[i] - odst[i]);
227 memcpy(odst, src2, LEN * sizeof(*src2));
228 bench_new(odst, src0, src1[0], LEN);
234 LOCAL_ALIGNED_16(float, odst, [LEN]);
244 memcpy(odst, src0, LEN * sizeof(*src0));
248 call_new(odst, odst1, LEN);
250 if (!float_near_abs_eps(cdst[i], odst[i], FLT_EPSILON) ||
253 i, cdst[i], odst[i], cdst[i] - odst[i]);
260 memcpy(odst, src0, LEN * sizeof(*src0));
262 bench_new(odst, odst1, LEN);