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

  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
arith_routines_hist.c 23 uint32_t W_lower, W_upper;
44 W_lower = W_upper_MSB * cdf_lo;
45 W_lower += (W_upper_LSB * cdf_lo) >> 16;
50 W_upper -= ++W_lower;
53 streamdata->streamval += W_lower;
56 if (streamdata->streamval < W_lower)
91 uint32_t W_lower, W_upper;
100 W_lower = 0; //to remove warning -DH
120 /* find the integer *data for which streamval lies in [W_lower+1, W_upper] */
137 W_lower = W_tmp
    [all...]
arith_routines_logist.c 87 uint32_t W_lower, W_upper;
129 W_lower = W_upper_MSB * cdf_lo;
130 W_lower += (W_upper_LSB * cdf_lo) >> 16;
135 W_upper -= ++W_lower;
138 streamdata->streamval += W_lower;
141 if (streamdata->streamval < W_lower)
179 uint32_t W_lower, W_upper;
204 /* find the integer *data for which streamval lies in [W_lower+1, W_upper] */
216 W_lower = W_tmp;
224 W_lower = W_tmp
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
arith_routines_hist.c 40 uint32_t W_lower;
69 W_lower = WEBRTC_SPL_UMUL(W_upper_MSB, cdfLo);
70 W_lower += ((W_upper_LSB * cdfLo) >> 16);
75 W_upper -= ++W_lower;
78 streamData->streamval += W_lower;
81 if (streamData->streamval < W_lower)
153 uint32_t W_lower = 0;
185 /* find the integer *data for which streamval lies in [W_lower+1, W_upper] */
205 W_lower = W_tmp;
214 W_lower = W_tmp
    [all...]
arith_routines_logist.c 103 uint32_t W_lower;
152 W_lower = WEBRTC_SPL_UMUL_32_16(cdfLo, W_upper_MSB);
153 W_lower += (cdfLo * W_upper_LSB) >> 16;
158 W_upper -= ++W_lower;
161 streamData->streamval += W_lower;
164 if (streamData->streamval < W_lower)
234 uint32_t W_lower;
294 /* find the integer *data for which streamVal lies in [W_lower+1, W_upper] */
308 W_lower = W_tmp;
317 W_lower = W_tmp
    [all...]

Completed in 424 milliseconds