OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:shift_norm
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
lpc_masking_model_mips.c
24
int shift_internal = 0,
shift_norm
= 0;
local
202
// Calculate the value of shifting (
shift_norm
) for the 64-bit sum.
204
shift_norm
= 32 - WebRtcSpl_NormW32(word32_high);
209
"srl %[residual_energy], %[sum64_lo], %[
shift_norm
] \n\t"
211
"subu %[tmp1], %[tmp1], %[
shift_norm
] \n\t"
217
: [
shift_norm
] "r" (
shift_norm
)
222
shift_norm
= 1;
225
shift_norm
= WebRtcSpl_NormW32(word32_low);
226
residual_energy = word32_low <<
shift_norm
;
[
all
...]
lpc_masking_model.c
469
int shift_internal = 0,
shift_norm
= 0;
local
505
// Calculate the value of shifting (
shift_norm
) for the 64-bit sum.
507
shift_norm
= 32 - WebRtcSpl_NormW32(word32_high);
508
residual_energy = (int32_t)(sum64 >>
shift_norm
);
511
shift_norm
= 1;
514
shift_norm
= WebRtcSpl_NormW32(word32_low);
515
residual_energy = word32_low <<
shift_norm
;
516
shift_norm
= -
shift_norm
;
520
/* Q(q_val_polynomial * 2) * Q(q_val_corr) >> shift_internal >>
shift_norm
[
all
...]
Completed in 90 milliseconds