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/webrtc/modules/audio_coding/codecs/isac/fix/source/
entropy_coding.c
276
int32_t res,
in_sqrt
, newRes;
local
331
in_sqrt
= summQ16[0] + (diffQ16[0] << shftVal);
334
res = 1 << (WebRtcSpl_GetSizeInBits(
in_sqrt
) >> 1);
338
in_sqrt
= summQ16[k] + (diffQ16[k] << shftVal);
341
/* make
in_sqrt
positive to prohibit sqrt of negative values */
342
if(
in_sqrt
<0)
343
in_sqrt
=-
in_sqrt
;
345
newRes = (
in_sqrt
/ res + res) >> 1;
349
newRes = (
in_sqrt
/ res + res) >> 1
[
all
...]
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
entropy_coding.c
278
int32_t
in_sqrt
;
local
311
in_sqrt
= invARSpec2_Q16[k];
315
if (
in_sqrt
< 0)
316
in_sqrt
= -
in_sqrt
;
318
newRes = (
in_sqrt
/ res + res) >> 1;
321
newRes = (
in_sqrt
/ res + res) >> 1;
405
int32_t
in_sqrt
;
local
565
in_sqrt
= invARSpec2_Q16[k];
568
if (
in_sqrt
< 0)
[
all
...]
Completed in 238 milliseconds