OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:W_tmp
(Results
1 - 4
of
4
) sorted by null
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
arith_routines_hist.c
155
uint32_t
W_tmp
;
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
;
[
all
...]
arith_routines_logist.c
236
uint32_t
W_tmp
;
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
= (uint32_t)cdfTmp * W_upper_MSB
[
all
...]
/external/webrtc/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 38 milliseconds