Home | History | Annotate | Download | only in decoder

Lines Matching refs:WORD32

27 static PLATFORM_INLINE WORD32 msu32x16in32_dual(WORD32 a, WORD16 c1, WORD32 b,
29 WORD32 result;
30 WORD32 temp_result;
32 WORD32 a_msb;
34 WORD32 b_msb;
43 temp_result = ((WORD32)temp_result) >> 16;
44 result = temp_result + ((a_msb * (WORD32)c1) - (b_msb * (WORD32)c2));
49 static PLATFORM_INLINE WORD32 mac32x16in32_dual(WORD32 a, WORD16 c1, WORD32 b,
51 WORD32 result;
52 WORD32 temp_result;
54 WORD32 a_msb;
56 WORD32 b_msb;
66 result = temp_result + ((a_msb * (WORD32)c1)) + ((b_msb * (WORD32)c2));
70 static PLATFORM_INLINE WORD64 mac32x32in64_dual(WORD32 a, WORD32 b, WORD64 c) {