OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tmp_low
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/webrtc/common_audio/signal_processing/
division_operations.c
102
int16_t approx, tmp_hi,
tmp_low
, num_hi, num_low;
local
116
tmp_low
= (int16_t)((tmpW32 - ((int32_t)tmp_hi << 16)) >> 1);
119
tmpW32 = (tmp_hi * approx + (
tmp_low
* approx >> 15)) << 1;
123
tmp_low
= (int16_t)((tmpW32 - ((int32_t)tmp_hi << 16)) >> 1);
131
tmpW32 = num_hi * tmp_hi + (num_hi *
tmp_low
>> 15) +
levinson_durbin.c
36
int16_t tmp_hi,
tmp_low
;
local
86
tmp_low
= (int16_t)((temp1W32 - ((int32_t)tmp_hi << 16)) >> 1);
89
temp1W32 = (R_hi[0] * tmp_hi + (R_hi[0] *
tmp_low
>> 15) +
204
tmp_low
= (int16_t)((temp1W32 - ((int32_t)tmp_hi << 16)) >> 1);
207
temp1W32 = (Alpha_hi * tmp_hi + (Alpha_hi *
tmp_low
>> 15) +
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
lpc_masking_model.c
82
int16_t tmp_hi,
tmp_low
;
local
129
tmp_low
= (int16_t)((temp1W32 - ((int32_t)tmp_hi << 16)) >> 1);
132
temp1W32 = (R_hi[0] * tmp_hi + ((R_hi[0] *
tmp_low
) >> 15) +
239
tmp_low
= (int16_t)((temp1W32 - ((int32_t)tmp_hi << 16)) >> 1);
242
temp1W32 = (Alpha_hi * tmp_hi + ((Alpha_hi *
tmp_low
) >> 15) +
Completed in 163 milliseconds