Searched refs:coef_ptr (Results 1 – 4 of 4) sorted by relevance
/external/webrtc/common_audio/signal_processing/ |
D | resample.c | 313 const int16_t* coef_ptr, int32_t* out1, in WebRtcSpl_DotProdIntToInt() argument 320 coef = coef_ptr[0]; in WebRtcSpl_DotProdIntToInt() 324 coef = coef_ptr[1]; in WebRtcSpl_DotProdIntToInt() 328 coef = coef_ptr[2]; in WebRtcSpl_DotProdIntToInt() 332 coef = coef_ptr[3]; in WebRtcSpl_DotProdIntToInt() 336 coef = coef_ptr[4]; in WebRtcSpl_DotProdIntToInt() 340 coef = coef_ptr[5]; in WebRtcSpl_DotProdIntToInt() 344 coef = coef_ptr[6]; in WebRtcSpl_DotProdIntToInt() 348 coef = coef_ptr[7]; in WebRtcSpl_DotProdIntToInt() 352 coef = coef_ptr[8]; in WebRtcSpl_DotProdIntToInt() [all …]
|
D | resample_fractional.c | 148 const int16_t *coef_ptr, int32_t *out1, in WebRtcSpl_ResampDotProduct() argument 155 coef = coef_ptr[0]; in WebRtcSpl_ResampDotProduct() 159 coef = coef_ptr[1]; in WebRtcSpl_ResampDotProduct() 163 coef = coef_ptr[2]; in WebRtcSpl_ResampDotProduct() 167 coef = coef_ptr[3]; in WebRtcSpl_ResampDotProduct() 171 coef = coef_ptr[4]; in WebRtcSpl_ResampDotProduct() 175 coef = coef_ptr[5]; in WebRtcSpl_ResampDotProduct() 179 coef = coef_ptr[6]; in WebRtcSpl_ResampDotProduct() 183 coef = coef_ptr[7]; in WebRtcSpl_ResampDotProduct() 187 coef = coef_ptr[8]; in WebRtcSpl_ResampDotProduct()
|
/external/webrtc/common_audio/ |
D | fir_filter_sse.cc | 56 float* coef_ptr = coefficients_.get(); in Filter() local 66 m_sum = _mm_add_ps(m_sum, _mm_mul_ps(m_in, _mm_load_ps(coef_ptr + j))); in Filter() 71 m_sum = _mm_add_ps(m_sum, _mm_mul_ps(m_in, _mm_load_ps(coef_ptr + j))); in Filter()
|
D | fir_filter_neon.cc | 55 float* coef_ptr = coefficients_.get(); in Filter() local 62 m_sum = vmlaq_f32(m_sum, m_in, vld1q_f32(coef_ptr + j)); in Filter()
|