Lines Matching defs:src2
91 static void test_vector_fmul_add(const float *src0, const float *src1, const float *src2)
98 const float *src2, int len);
100 call_ref(cdst, src0, src1, src2, LEN);
101 call_new(odst, src0, src1, src2, LEN);
110 bench_new(odst, src0, src1, src2, LEN);
159 static void test_vector_fmac_scalar(const float *src0, const float *src1, const float *src2)
167 memcpy(cdst, src2, LEN * sizeof(*src2));
168 memcpy(odst, src2, LEN * sizeof(*src2));
180 memcpy(odst, src2, LEN * sizeof(*src2));
207 static void test_vector_dmac_scalar(const double *src0, const double *src1, const double *src2)
215 memcpy(cdst, src2, LEN * sizeof(*src2));
216 memcpy(odst, src2, LEN * sizeof(*src2));
227 memcpy(odst, src2, LEN * sizeof(*src2));
286 LOCAL_ALIGNED_32(float, src2, [LEN]);
302 randomize_buffer(src2);
313 test_vector_fmul_add(src0, src1, src2);
322 test_vector_fmac_scalar(src0, src1, src2);