OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:b1_high
(Results
1 - 1
of
1
) sorted by null
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
chebyshev.c
34
int16_t
b1_high
, b1_low; /* Use the high, low format to increase the accuracy */
local
48
b1_high
= (int16_t)(tmp1W32 >> 16);
49
b1_low = (int16_t)((tmp1W32 - ((int32_t)
b1_high
<< 16)) >> 1);
52
tmp1W32 = ((
b1_high
* x + ((b1_low * x) >> 15)) << 2) - b2 + (f[i] << 14);
59
b1_high
= (int16_t)(tmp1W32 >> 16);
60
b1_low = (int16_t)((tmp1W32 - ((int32_t)
b1_high
<< 16)) >> 1);
63
tmp1W32 = ((
b1_high
* x) << 1) + (((b1_low * x) >> 15) << 1) -
Completed in 53 milliseconds