OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tmp_hi
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
division_operations.c
102
int16_t approx,
tmp_hi
, tmp_low, num_hi, num_low;
local
116
tmp_hi
= (int16_t)WEBRTC_SPL_RSHIFT_W32(tmpW32, 16);
118
- WEBRTC_SPL_LSHIFT_W32((int32_t)
tmp_hi
, 16)), 1);
121
tmpW32 = ((WEBRTC_SPL_MUL_16_16(
tmp_hi
, approx) + (WEBRTC_SPL_MUL_16_16(tmp_low, approx)
125
tmp_hi
= (int16_t)WEBRTC_SPL_RSHIFT_W32(tmpW32, 16);
127
- WEBRTC_SPL_LSHIFT_W32((int32_t)
tmp_hi
, 16)), 1);
136
tmpW32 = (WEBRTC_SPL_MUL_16_16(num_hi,
tmp_hi
) + (WEBRTC_SPL_MUL_16_16(num_hi, tmp_low)
137
>> 15) + (WEBRTC_SPL_MUL_16_16(num_low,
tmp_hi
) >> 15));
levinson_durbin.c
36
int16_t
tmp_hi
, tmp_low;
local
89
tmp_hi
= (int16_t)WEBRTC_SPL_RSHIFT_W32(temp1W32, 16);
91
- WEBRTC_SPL_LSHIFT_W32((int32_t)
tmp_hi
, 16)), 1);
94
temp1W32 = ((WEBRTC_SPL_MUL_16_16(R_hi[0],
tmp_hi
)
96
+ (WEBRTC_SPL_MUL_16_16(R_low[0],
tmp_hi
) >> 15)) << 1);
213
tmp_hi
= (int16_t)WEBRTC_SPL_RSHIFT_W32(temp1W32, 16);
215
- WEBRTC_SPL_LSHIFT_W32((int32_t)
tmp_hi
, 16)), 1);
218
temp1W32 = ((WEBRTC_SPL_MUL_16_16(Alpha_hi,
tmp_hi
)
220
+ (WEBRTC_SPL_MUL_16_16(Alpha_low,
tmp_hi
) >> 15)) << 1);
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
lpc_masking_model.c
82
int16_t
tmp_hi
, tmp_low;
local
130
tmp_hi
= (int16_t) WEBRTC_SPL_RSHIFT_W32(temp1W32, 16);
131
tmp_low = (int16_t)WEBRTC_SPL_RSHIFT_W32((temp1W32 - WEBRTC_SPL_LSHIFT_W32((int32_t)
tmp_hi
, 16)), 1);
134
temp1W32 = WEBRTC_SPL_LSHIFT_W32((WEBRTC_SPL_MUL_16_16(R_hi[0],
tmp_hi
) +
136
WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_MUL_16_16(R_low[0],
tmp_hi
), 15) ), 1);
245
tmp_hi
= (int16_t) WEBRTC_SPL_RSHIFT_W32(temp1W32, 16);
246
tmp_low = (int16_t)WEBRTC_SPL_RSHIFT_W32((temp1W32 - WEBRTC_SPL_LSHIFT_W32((int32_t)
tmp_hi
, 16)), 1);
249
temp1W32 = WEBRTC_SPL_LSHIFT_W32(( WEBRTC_SPL_MUL_16_16(Alpha_hi,
tmp_hi
) +
251
WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_MUL_16_16(Alpha_low,
tmp_hi
), 15)), 1);
[
all
...]
Completed in 29 milliseconds