OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:W_upper
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
arith_routines_hist.c
23
uint32_t W_lower,
W_upper
;
33
W_upper
= streamdata->
W_upper
;
42
W_upper_LSB =
W_upper
& 0x0000FFFF;
43
W_upper_MSB =
W_upper
>> 16;
46
W_upper
= W_upper_MSB * cdf_hi;
47
W_upper
+= (W_upper_LSB * cdf_hi) >> 16;
50
W_upper
-= ++W_lower;
64
while ( !(
W_upper
& 0xFF000000) ) /*
W_upper
< 2^24 *
[
all
...]
arith_routines_logist.c
87
uint32_t W_lower,
W_upper
;
97
W_upper
= streamdata->
W_upper
;
127
W_upper_LSB =
W_upper
& 0x0000FFFF;
128
W_upper_MSB =
W_upper
>> 16;
131
W_upper
= W_upper_MSB * cdf_hi;
132
W_upper
+= (W_upper_LSB * cdf_hi) >> 16;
135
W_upper
-= ++W_lower;
149
while ( !(
W_upper
& 0xFF000000) ) /*
W_upper
< 2^24 *
[
all
...]
structs.h
28
uint32_t
W_upper
;
424
uint32_t
W_upper
;
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
arith_routines_hist.c
41
uint32_t
W_upper
;
58
W_upper
= streamData->
W_upper
;
67
W_upper_LSB =
W_upper
& 0x0000FFFF;
68
W_upper_MSB = WEBRTC_SPL_RSHIFT_W32(
W_upper
, 16);
71
W_upper
= WEBRTC_SPL_UMUL(W_upper_MSB, cdfHi);
72
W_upper
+= ((W_upper_LSB * cdfHi) >> 16);
75
W_upper
-= ++W_lower;
101
*
W_upper
< 2^24 */
102
while ( !(
W_upper
& 0xFF000000)
[
all
...]
arith_routines_logist.c
104
uint32_t
W_upper
;
119
W_upper
= streamData->
W_upper
;
150
W_upper_LSB = (uint16_t)
W_upper
;
151
W_upper_MSB = (uint16_t)WEBRTC_SPL_RSHIFT_U32(
W_upper
, 16);
154
W_upper
= WEBRTC_SPL_UMUL_32_16(cdfHi, W_upper_MSB);
155
W_upper
+= (cdfHi * W_upper_LSB) >> 16;
158
W_upper
-= ++W_lower;
184
*
W_upper
< 2^24 */
185
while ( !(
W_upper
& 0xFF000000)
[
all
...]
structs.h
30
uint32_t
W_upper
; /* Upper boundary of interval W */
43
uint32_t
W_upper
; /* Upper boundary of interval W */
371
uint32_t
W_upper
; /* Upper boundary of interval W */
Completed in 5455 milliseconds