• Home
  • Raw
  • Download

Lines Matching refs:coef

153     int16_t coef;  in WebRtcSpl_ResampDotProduct()  local
155 coef = coef_ptr[0]; in WebRtcSpl_ResampDotProduct()
156 tmp1 += coef * in1[0]; in WebRtcSpl_ResampDotProduct()
157 tmp2 += coef * in2[-0]; in WebRtcSpl_ResampDotProduct()
159 coef = coef_ptr[1]; in WebRtcSpl_ResampDotProduct()
160 tmp1 += coef * in1[1]; in WebRtcSpl_ResampDotProduct()
161 tmp2 += coef * in2[-1]; in WebRtcSpl_ResampDotProduct()
163 coef = coef_ptr[2]; in WebRtcSpl_ResampDotProduct()
164 tmp1 += coef * in1[2]; in WebRtcSpl_ResampDotProduct()
165 tmp2 += coef * in2[-2]; in WebRtcSpl_ResampDotProduct()
167 coef = coef_ptr[3]; in WebRtcSpl_ResampDotProduct()
168 tmp1 += coef * in1[3]; in WebRtcSpl_ResampDotProduct()
169 tmp2 += coef * in2[-3]; in WebRtcSpl_ResampDotProduct()
171 coef = coef_ptr[4]; in WebRtcSpl_ResampDotProduct()
172 tmp1 += coef * in1[4]; in WebRtcSpl_ResampDotProduct()
173 tmp2 += coef * in2[-4]; in WebRtcSpl_ResampDotProduct()
175 coef = coef_ptr[5]; in WebRtcSpl_ResampDotProduct()
176 tmp1 += coef * in1[5]; in WebRtcSpl_ResampDotProduct()
177 tmp2 += coef * in2[-5]; in WebRtcSpl_ResampDotProduct()
179 coef = coef_ptr[6]; in WebRtcSpl_ResampDotProduct()
180 tmp1 += coef * in1[6]; in WebRtcSpl_ResampDotProduct()
181 tmp2 += coef * in2[-6]; in WebRtcSpl_ResampDotProduct()
183 coef = coef_ptr[7]; in WebRtcSpl_ResampDotProduct()
184 tmp1 += coef * in1[7]; in WebRtcSpl_ResampDotProduct()
185 tmp2 += coef * in2[-7]; in WebRtcSpl_ResampDotProduct()
187 coef = coef_ptr[8]; in WebRtcSpl_ResampDotProduct()
188 *out1 = tmp1 + coef * in1[8]; in WebRtcSpl_ResampDotProduct()
189 *out2 = tmp2 + coef * in2[-8]; in WebRtcSpl_ResampDotProduct()