HomeSort by relevance Sort by last modified time
    Searched refs:W_tmp (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
arith_routines_hist.c 156 uint32_t W_tmp;
197 W_tmp = WEBRTC_SPL_UMUL_32_16(W_upper_MSB, *cdfPtr);
198 W_tmp += (W_upper_LSB * (*cdfPtr)) >> 16;
204 if (streamval > W_tmp)
206 W_lower = W_tmp;
209 W_upper = W_tmp;
213 if (streamval > W_tmp)
215 W_lower = W_tmp;
218 W_upper = W_tmp;
293 uint32_t W_tmp;
    [all...]
arith_routines_logist.c 237 uint32_t W_tmp;
305 W_tmp = WEBRTC_SPL_UMUL_16_16(cdfTmp, W_upper_MSB);
306 W_tmp += ((uint32_t)cdfTmp * (uint32_t)W_upper_LSB) >> 16;
308 if (streamVal > W_tmp)
310 W_lower = W_tmp;
314 W_tmp = WEBRTC_SPL_UMUL_16_16(cdfTmp, W_upper_MSB);
315 W_tmp += ((uint32_t)cdfTmp * (uint32_t)W_upper_LSB) >> 16;
317 while (streamVal > W_tmp)
319 W_lower = W_tmp;
324 W_tmp = WEBRTC_SPL_UMUL_16_16(cdfTmp, W_upper_MSB)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
arith_routines_hist.c 92 uint32_t W_tmp;
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;
    [all...]
arith_routines_logist.c 180 uint32_t W_tmp;
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 = W_upper_MSB * cdf_tmp
    [all...]

Completed in 540 milliseconds