Lines Matching refs:cdst

46     LOCAL_ALIGNED_32(float, cdst, [LEN]);
53 call_ref(cdst, 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]);
69 LOCAL_ALIGNED_32(double, cdst, [LEN]);
76 call_ref(cdst, 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]);
93 LOCAL_ALIGNED_32(float, cdst, [LEN]);
100 call_ref(cdst, 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]);
115 LOCAL_ALIGNED_16(float, cdst, [LEN]);
121 call_ref(cdst, 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]);
138 LOCAL_ALIGNED_16(float, cdst, [LEN]);
145 call_ref(cdst, 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]);
161 LOCAL_ALIGNED_32(float, cdst, [LEN]);
167 memcpy(cdst, src2, LEN * sizeof(*src2));
170 call_ref(cdst, 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]);
186 LOCAL_ALIGNED_32(double, cdst, [LEN]);
192 call_ref(cdst, 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]);
209 LOCAL_ALIGNED_32(double, cdst, [LEN]);
215 memcpy(cdst, src2, LEN * sizeof(*src2));
217 call_ref(cdst, 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]);
233 LOCAL_ALIGNED_16(float, cdst, [LEN]);
242 memcpy(cdst, src0, LEN * sizeof(*src0));
247 call_ref(cdst, cdst1, LEN);
250 if (!float_near_abs_eps(cdst[i], odst[i], FLT_EPSILON) ||
253 i, cdst[i], odst[i], cdst[i] - odst[i]);