Searched defs:W_tmp (Results 1 - 4 of 4) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Darith_routines_hist.c155 uint32_t W_tmp; local
196 W_tmp = WEBRTC_SPL_UMUL_32_16(W_upper_MSB, *cdfPtr);
197 W_tmp += (W_upper_LSB * (*cdfPtr)) >> 16;
203 if (streamval > W_tmp)
205 W_lower = W_tmp;
208 W_upper = W_tmp;
212 if (streamval > W_tmp)
214 W_lower = W_tmp;
217 W_upper = W_tmp;
290 uint32_t W_tmp; local
[all...]
H A Darith_routines_logist.c236 uint32_t W_tmp; local
303 W_tmp = (uint32_t)cdfTmp * W_upper_MSB;
304 W_tmp += ((uint32_t)cdfTmp * (uint32_t)W_upper_LSB) >> 16;
306 if (streamVal > W_tmp)
308 W_lower = W_tmp;
312 W_tmp = (uint32_t)cdfTmp * W_upper_MSB;
313 W_tmp += ((uint32_t)cdfTmp * (uint32_t)W_upper_LSB) >> 16;
315 while (streamVal > W_tmp)
317 W_lower = W_tmp;
322 W_tmp
[all...]
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Darith_routines_hist.c92 uint32_t W_tmp; local
131 W_tmp = W_upper_MSB * *cdf_ptr;
132 W_tmp += (W_upper_LSB * *cdf_ptr) >> 16;
135 if (streamval > W_tmp)
137 W_lower = W_tmp;
140 W_upper = W_tmp;
144 if (streamval > W_tmp)
146 W_lower = W_tmp;
149 W_upper = W_tmp;
200 uint32_t W_tmp; local
[all...]
H A Darith_routines_logist.c180 uint32_t W_tmp; local
212 W_tmp = W_upper_MSB * cdf_tmp;
213 W_tmp += (W_upper_LSB * cdf_tmp) >> 16;
214 if (streamval > W_tmp)
216 W_lower = W_tmp;
220 W_tmp = W_upper_MSB * cdf_tmp;
221 W_tmp += (W_upper_LSB * cdf_tmp) >> 16;
222 while (streamval > W_tmp)
224 W_lower = W_tmp;
228 W_tmp
[all...]

Completed in 390 milliseconds