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

  /external/webrtc/webrtc/common_audio/signal_processing/include/
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,
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...]

Completed in 69 milliseconds