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
(Results
1 - 5
of
5
) sorted by null
/external/webrtc/webrtc/common_audio/signal_processing/include/
signal_processing_library.h
52
#define
WEBRTC_SPL_MUL_16_16
(a, b) \
55
(
WEBRTC_SPL_MUL_16_16
(a, b >> 16) \
56
+ ((
WEBRTC_SPL_MUL_16_16
(a, (b & 0xffff) >> 1) + 0x4000) >> 15))
61
((
WEBRTC_SPL_MUL_16_16
(a, (b) >> 16) << 5) \
64
((
WEBRTC_SPL_MUL_16_16
(a, (b) >> 16) << 2) \
67
((
WEBRTC_SPL_MUL_16_16
(a, (b) >> 16) << 1) \
71
(
WEBRTC_SPL_MUL_16_16
(a, b) >> (c))
74
((
WEBRTC_SPL_MUL_16_16
(a, b) + ((int32_t) \
[
all
...]
spl_inl_armv7.h
33
static __inline int32_t
WEBRTC_SPL_MUL_16_16
(int16_t a, int16_t b) {
spl_inl_mips.h
18
static __inline int32_t
WEBRTC_SPL_MUL_16_16
(int32_t a,
/external/webrtc/webrtc/common_audio/signal_processing/
cross_correlation_neon.c
48
sum_res +=
WEBRTC_SPL_MUL_16_16
(*vector1, *vector2);
signal_processing_unittest.cc
74
EXPECT_EQ(-49149,
WEBRTC_SPL_MUL_16_16
(a, b));
75
EXPECT_EQ(1073676289,
WEBRTC_SPL_MUL_16_16
(WEBRTC_SPL_WORD16_MAX,
Completed in 49 milliseconds