OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:in_sqrt
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
entropy_coding.c
250
WebRtc_Word32 res,
in_sqrt
, newRes;
local
305
in_sqrt
= summQ16[0] + WEBRTC_SPL_LSHIFT_W32(diffQ16[0], shftVal);
308
res = WEBRTC_SPL_LSHIFT_W32(1, WEBRTC_SPL_RSHIFT_W16(WebRtcSpl_GetSizeInBits(
in_sqrt
), 1));
312
in_sqrt
= summQ16[k] + WEBRTC_SPL_LSHIFT_W32(diffQ16[k], shftVal);
315
/* make
in_sqrt
positive to prohibit sqrt of negative values */
316
if(
in_sqrt
<0)
317
in_sqrt
=-
in_sqrt
;
319
newRes = WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_DIV(
in_sqrt
, res) + res, 1);
323
newRes = WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_DIV(
in_sqrt
, res) + res, 1)
[
all
...]
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
entropy_coding.c
283
WebRtc_Word32
in_sqrt
;
local
316
in_sqrt
= invARSpec2_Q16[k];
320
if (
in_sqrt
< 0)
321
in_sqrt
= -
in_sqrt
;
323
newRes = (
in_sqrt
/ res + res) >> 1;
326
newRes = (
in_sqrt
/ res + res) >> 1;
410
WebRtc_Word32
in_sqrt
;
local
570
in_sqrt
= invARSpec2_Q16[k];
573
if (
in_sqrt
< 0)
[
all
...]
Completed in 29 milliseconds