Home
last modified time | relevance | path

Searched refs:mul2 (Results 1 – 4 of 4) sorted by relevance

/cmsis-dsp-latest/Source/ComplexMathFunctions/
Darm_cmplx_mult_real_q15.c122 … q31_t mul1, mul2, mul3, mul4; /* Temporary variables to hold intermediate data */ in arm_cmplx_mult_real_q15() local
143 mul2 = (q31_t) ((q15_t) (inA1 >> 16) * (q15_t) (inB1)); in arm_cmplx_mult_real_q15()
147 mul2 = (q31_t) ((q15_t) (inA1 >> 16) * (q15_t) (inB1 >> 16)); in arm_cmplx_mult_real_q15()
155 out2 = (q15_t) __SSAT(mul2 >> 15U, 16); in arm_cmplx_mult_real_q15()
169 mul2 = (q31_t) ((q15_t) (inA1 >> 16) * (q15_t) (inB1)); in arm_cmplx_mult_real_q15()
173 mul2 = (q31_t) ((q15_t) (inA1 >> 16) * (q15_t) (inB1 >> 16)); in arm_cmplx_mult_real_q15()
180 out2 = (q15_t) __SSAT(mul2 >> 15U, 16); in arm_cmplx_mult_real_q15()
/cmsis-dsp-latest/Source/BasicMathFunctions/
Darm_mult_q15.c113 q31_t mul1, mul2, mul3, mul4; /* Temporary variables */ in arm_mult_q15() local
135 mul2 = (q31_t) ((q15_t) (inA1 ) * (q15_t) (inB1 )); in arm_mult_q15()
141 out2 = (q15_t) __SSAT(mul2 >> 15, 16); in arm_mult_q15()
/cmsis-dsp-latest/dsppp/Include/dsppp/DSP/
Dq15.hpp199 q31_t mul1,mul2; in vmul() local
203 mul2 = (q31_t) ((q15_t) (a.v >> 16) * (q15_t) (b.v >> 16)); in vmul()
206 out2 = (q15_t) __SSAT(mul2 >> 15, 16); in vmul()
Dq7.hpp136 q15_t mul1,mul2,mul3,mul4; in vmul() local
139 mul2 = (q15_t) ((q7_t) (a.v >> 8) * (q7_t) (b.v >> 8)); in vmul()
144 out2 = (q7_t) __SSAT(mul2 >> 7, 8); in vmul()