OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WEBRTC_SPL_MUL_16_16_RSFT
(Results
1 - 5
of
5
) sorted by null
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
fft.c
70
/* Uses 16x16 mul, without rounding, which is faster. Uses
WEBRTC_SPL_MUL_16_16_RSFT
*/
148
RexQx[k1] = (int16_t)
WEBRTC_SPL_MUL_16_16_RSFT
(ccc1Q14, akpQx, 14) -
149
(int16_t)
WEBRTC_SPL_MUL_16_16_RSFT
(sss1Q14, bkpQx, 14); // 6 non-mul + 2 mul cycles, i.e. 8 cycles (6+2*7=20 cycles if 16x32mul)
150
RexQx[k2] = (int16_t)
WEBRTC_SPL_MUL_16_16_RSFT
(ccc2Q14, ajpQx, 14) -
151
(int16_t)
WEBRTC_SPL_MUL_16_16_RSFT
(sss2Q14, bjpQx, 14);
152
RexQx[k3] = (int16_t)
WEBRTC_SPL_MUL_16_16_RSFT
(ccc3Q14, akmQx, 14) -
153
(int16_t)
WEBRTC_SPL_MUL_16_16_RSFT
(sss3Q14, bkmQx, 14);
154
ImxQx[k1] = (int16_t)
WEBRTC_SPL_MUL_16_16_RSFT
(sss1Q14, akpQx, 14) +
155
(int16_t)
WEBRTC_SPL_MUL_16_16_RSFT
(ccc1Q14, bkpQx, 14);
156
ImxQx[k2] = (int16_t)
WEBRTC_SPL_MUL_16_16_RSFT
(sss2Q14, ajpQx, 14)
[
all
...]
/external/webrtc/webrtc/modules/audio_coding/codecs/cng/
webrtc_cng.c
346
inst->enc_reflCoefs[i] = (int16_t)
WEBRTC_SPL_MUL_16_16_RSFT
(
348
inst->enc_reflCoefs[i] += (int16_t)
WEBRTC_SPL_MUL_16_16_RSFT
(
510
tmp3 = (int16_t)
WEBRTC_SPL_MUL_16_16_RSFT
(tmp1, Beta, 15);
511
tmp3 += (int16_t)
WEBRTC_SPL_MUL_16_16_RSFT
(tmp2, BetaC, 15);
519
inst->dec_used_reflCoefs[i] = (int16_t)
WEBRTC_SPL_MUL_16_16_RSFT
(
521
inst->dec_used_reflCoefs[i] += (int16_t)
WEBRTC_SPL_MUL_16_16_RSFT
(
542
temp16 = (int16_t)
WEBRTC_SPL_MUL_16_16_RSFT
(
546
En = (int16_t)
WEBRTC_SPL_MUL_16_16_RSFT
(En, temp16, 15);
/external/webrtc/webrtc/common_audio/signal_processing/include/
signal_processing_library.h
70
#define
WEBRTC_SPL_MUL_16_16_RSFT
(a, b, c) \
[
all
...]
/external/webrtc/webrtc/common_audio/signal_processing/
signal_processing_unittest.cc
55
EXPECT_EQ(-12288,
WEBRTC_SPL_MUL_16_16_RSFT
(a, b, 2));
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
entropy_coding.c
260
bufQ7[k] = (int16_t)
WEBRTC_SPL_MUL_16_16_RSFT
(bufQ7[k], 2048, 13);
[
all
...]
Completed in 776 milliseconds