Home | History | Annotate | Download | only in signal_processing

Lines Matching refs:in2

312 static void WebRtcSpl_DotProdIntToInt(const int32_t* in1, const int32_t* in2,
322 tmp2 += coef * in2[-0];
326 tmp2 += coef * in2[-1];
330 tmp2 += coef * in2[-2];
334 tmp2 += coef * in2[-3];
338 tmp2 += coef * in2[-4];
342 tmp2 += coef * in2[-5];
346 tmp2 += coef * in2[-6];
350 tmp2 += coef * in2[-7];
354 *out2 = tmp2 + coef * in2[-8];
358 static void WebRtcSpl_DotProdIntToShort(const int32_t* in1, const int32_t* in2,
368 tmp2 += coef * in2[-0];
372 tmp2 += coef * in2[-1];
376 tmp2 += coef * in2[-2];
380 tmp2 += coef * in2[-3];
384 tmp2 += coef * in2[-4];
388 tmp2 += coef * in2[-5];
392 tmp2 += coef * in2[-6];
396 tmp2 += coef * in2[-7];
400 tmp2 += coef * in2[-8];