HomeSort by relevance Sort by last modified time
    Searched defs:WEBRTC_SPL_MUL_16_16 (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/include/
spl_inl_armv7.h 58 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,
signal_processing_library.h 73 #define WEBRTC_SPL_MUL_16_16(a, b) \
76 (WEBRTC_SPL_MUL_16_16(a, b >> 16) \
77 + ((WEBRTC_SPL_MUL_16_16(a, (b & 0xffff) >> 1) + 0x4000) >> 15))
85 ((WEBRTC_SPL_MUL_16_16(a, (b) >> 16) << 5) \
88 ((WEBRTC_SPL_MUL_16_16(a, (b) >> 16) << 2) \
91 ((WEBRTC_SPL_MUL_16_16(a, (b) >> 16) << 1) \
95 (WEBRTC_SPL_MUL_16_16(a, b) >> (c))
98 ((WEBRTC_SPL_MUL_16_16(a, b) + ((int32_t) \
    [all...]
  /external/webrtc/src/common_audio/signal_processing/include/
spl_inl_armv7.h 41 static __inline WebRtc_Word32 WEBRTC_SPL_MUL_16_16(WebRtc_Word16 a,
signal_processing_library.h 86 #define WEBRTC_SPL_MUL_16_16(a, b) \
89 (WEBRTC_SPL_MUL_16_16(a, b >> 16) \
90 + ((WEBRTC_SPL_MUL_16_16(a, (b & 0xffff) >> 1) + 0x4000) >> 15))
102 ((WEBRTC_SPL_MUL_16_16(a, (b) >> 16) << 5) \
105 ((WEBRTC_SPL_MUL_16_16(a, (b) >> 16) << 2) \
108 ((WEBRTC_SPL_MUL_16_16(a, (b) >> 16) << 1) \
112 #define WEBRTC_SPL_MUL_16_16(a, b) \
117 (WEBRTC_SPL_MUL_16_16(a, b) >> (c))
120 ((WEBRTC_SPL_MUL_16_16(a, b) + ((WebRtc_Word32) \
123 ((WEBRTC_SPL_MUL_16_16(a, b) + ((WebRtc_Word32) (1 << 14))) >> 15
    [all...]

Completed in 166 milliseconds