Home | History | Annotate | Download | only in source

Lines Matching refs:Out

44 void WebRtcSpl_Resample48khzTo32khz(const WebRtc_Word32 *In, WebRtc_Word32 *Out,
66 Out[0] = tmp;
77 Out[1] = tmp;
81 Out += 2;
90 void WebRtcSpl_Resample32khzTo24khz(const WebRtc_Word32 *In, WebRtc_Word32 *Out,
112 Out[0] = tmp;
123 Out[1] = tmp;
134 Out[2] = tmp;
138 Out += 3;
199 void WebRtcSpl_Resample44khzTo32khz(const WebRtc_Word32 *In, WebRtc_Word32 *Out,
215 Out[0] = ((WebRtc_Word32)In[3] << 15) + tmp;
227 Out[4] = tmp;
230 WebRtcSpl_ResampDotProduct(&In[0], &In[17], kCoefficients44To32[0], &Out[1], &Out[7]);
233 WebRtcSpl_ResampDotProduct(&In[2], &In[15], kCoefficients44To32[1], &Out[2], &Out[6]);
236 WebRtcSpl_ResampDotProduct(&In[3], &In[14], kCoefficients44To32[2], &Out[3], &Out[5]);
240 Out += 8;