Searched refs:s32In1 (Results 1 – 2 of 2) sorted by relevance
/hal_espressif-latest/components/bt/host/bluedroid/external/sbc/encoder/include/ |
D | sbc_dct.h | 29 #define SBC_MULT_32_16_SIMPLIFIED(s16In2, s32In1, s32OutLow) \ argument 33 MUL s32OutLow,(SINT32)s16In2, (s32In1>>15) \ 38 … SBC_MULT_32_16_SIMPLIFIED(s16In2, s32In1 , s32OutLow) s32OutLow = SBC_Multiply_32_16_Simplified((… argument 42 #define SBC_MULT_32_16_SIMPLIFIED(s16In2, s32In1 , s32OutLow) s32OutLow=(SINT32)(((SINT64)s16In2*(S… argument 44 #define SBC_MULT_32_32(s32In2, s32In1, s32OutLow) \ argument 46 s64Temp = ((SINT64) s32In2) * ((SINT64) s32In1)>>31; \ 51 #define SBC_MULT_32_16_SIMPLIFIED(s16In2, s32In1 , s32OutLow) \ argument 53 s32In1Temp = s32In1; \ 74 #define SBC_MULT_64(s32In1, s32In2, s32OutLow, s32OutHi) \ argument 76 s32OutLow=(SINT32)(((SINT64)s32In1*(SINT64)s32In2)& 0x00000000FFFFFFFF);\ [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/external/sbc/encoder/srce/ |
D | sbc_packing.c | 31 #define Mult32(s32In1,s32In2,s32OutLow) \ argument 35 MUL s32OutLow,s32In1,s32In2; \ 38 #define Mult64(s32In1, s32In2, s32OutLow, s32OutHi) \ argument 42 SMULL s32OutLow,s32OutHi,s32In1,s32In2 \ 46 #define Mult32(s32In1,s32In2,s32OutLow) s32OutLow=(SINT32)s32In1*(SINT32)s32In2; argument 47 #define Mult64(s32In1, s32In2, s32OutLow, s32OutHi) \ argument 49 s32OutLow = ((SINT32)(UINT16)s32In1 * (UINT16)s32In2); \ 50 s32TempVal2 = (SINT32)((s32In1 >> 16) * (UINT16)s32In2); \
|