Searched refs:pOutput (Results 1 – 6 of 6) sorted by relevance
/cmsis-dsp-latest/Source/FilteringFunctions/ |
D | arm_fir_q31.c | 74 *pOutput++ = (q31_t)asrl(acc[j], 23); \ 103 *pOutput++ = (q31_t)asrl(acc[j], 23); \ 114 q31_t *pOutput; /* Temporary pointer to the output buffer */ \ 135 pOutput = pDst; \ 217 q31_t *pOutput; /* Temporary pointer to the output buffer */ in arm_fir_q31_1_4_mve() local 232 pOutput = pDst; in arm_fir_q31_1_4_mve() 269 *pOutput++ = (q31_t) acc0; in arm_fir_q31_1_4_mve() 270 *pOutput++ = (q31_t) acc1; in arm_fir_q31_1_4_mve() 271 *pOutput++ = (q31_t) acc2; in arm_fir_q31_1_4_mve() 272 *pOutput++ = (q31_t) acc3; in arm_fir_q31_1_4_mve() [all …]
|
D | arm_fir_q7.c | 58 #define FIR_Q7_CORE(pOutput, nbAcc, nbVecTaps, pSample, vecCoeffs) \ argument 68 *pOutput++ = (q7_t) __SSAT((acc[j] >> 7U), 8); \ 77 q7_t *pOutput; /* Temporary pointer to the output buffer */ \ 99 pOutput = pDst; \ 110 FIR_Q7_CORE(pOutput, 4, NBVECTAPS, pSamples, vecCoeffs); \ 122 FIR_Q7_CORE(pOutput, residual, NBVECTAPS, pSamples, vecCoeffs); \ 199 q7_t *pOutput; /* Temporary pointer to the output buffer */ in arm_fir_q7() local 249 pOutput = pDst; in arm_fir_q7() 304 *pOutput++ = (q7_t) __SSAT((acc0 >> 7U), 8); in arm_fir_q7() 305 *pOutput++ = (q7_t) __SSAT((acc1 >> 7U), 8); in arm_fir_q7() [all …]
|
D | arm_fir_q15.c | 63 #define FIR_Q15_CORE(pOutput, nbAcc, nbVecTaps, pSample, vecCoeffs) \ argument 73 *pOutput++ = (q15_t) MVE_ASRL_SAT16(acc[j], 15); \ 82 q15_t *pOutput; /* Temporary pointer to the output buffer */ \ 104 pOutput = pDst; \ 115 FIR_Q15_CORE(pOutput, 4, NBVECTAPS, pSamples, vecCoeffs); \ 127 FIR_Q15_CORE(pOutput, residual, NBVECTAPS, pSamples, vecCoeffs); \ 208 q15_t *pOutput; /* Temporary pointer to the output buffer */ in arm_fir_q15() local 242 pOutput = pDst; in arm_fir_q15() 290 *pOutput++ = (q15_t) MVE_ASRL_SAT16(acc0, 15); in arm_fir_q15() 291 *pOutput++ = (q15_t) MVE_ASRL_SAT16(acc1, 15); in arm_fir_q15() [all …]
|
D | arm_fir_f16.c | 71 float16_t *pOutput; /* Temporary pointer to the output buffer */ in arm_fir_f16_1_4_mve() local 92 pOutput = pDst; in arm_fir_f16_1_4_mve() 108 vst1q(pOutput, vecAcc0); in arm_fir_f16_1_4_mve() 110 pOutput += 8; in arm_fir_f16_1_4_mve() 127 vstrhq_p_f16(pOutput, vecAcc0, p0); in arm_fir_f16_1_4_mve() 161 float16_t *pOutput; /* Temporary pointer to the output buffer */ in arm_fir_f16_5_8_mve() local 182 pOutput = pDst; in arm_fir_f16_5_8_mve() 198 vst1q(pOutput, vecAcc0); in arm_fir_f16_5_8_mve() 200 pOutput += 8; in arm_fir_f16_5_8_mve() 217 vstrhq_p_f16(pOutput, vecAcc0, p0); in arm_fir_f16_5_8_mve() [all …]
|
D | arm_fir_f32.c | 175 float32_t *pOutput; /* Temporary pointer to the output buffer */ in arm_fir_f32_1_4_mve() local 193 pOutput = pDst; in arm_fir_f32_1_4_mve() 209 vst1q(pOutput, vecAcc0); in arm_fir_f32_1_4_mve() 211 pOutput += 4; in arm_fir_f32_1_4_mve() 228 vstrwq_p_f32(pOutput, vecAcc0, p0); in arm_fir_f32_1_4_mve() 374 float32_t *pOutput; /* Temporary pointer to the output buffer */ in arm_fir_f32() local 557 pOutput = pDst; in arm_fir_f32() 583 vst1q(pOutput, vecAcc0+pap); in arm_fir_f32() 586 pOutput += 4; in arm_fir_f32() 613 vstrwq_p_f32(pOutput, vecAcc0+pap,p0); in arm_fir_f32() [all …]
|
/cmsis-dsp-latest/dsppp/tests/ |
D | filter_test.cpp | 22 #define FIR_Q15_CORE(pOutput, nbAcc, nbVecTaps, pSample, vecCoeffs) \ argument 32 *pOutput++ = (q15_t) MVE_ASRL_SAT16(acc[j], 15); \ 41 q15_t *pOutput; /* Temporary pointer to the output buffer */ \ 63 pOutput = pDst; \ 74 FIR_Q15_CORE(pOutput, 4, NBVECTAPS, pSamples, vecCoeffs); \ 86 FIR_Q15_CORE(pOutput, residual, NBVECTAPS, pSamples, vecCoeffs); \ 167 q15_t *pOutput; /* Temporary pointer to the output buffer */ in debug_arm_fir_q15() local 201 pOutput = pDst; in debug_arm_fir_q15() 255 *pOutput++ = (q15_t) MVE_ASRL_SAT16(acc0, 15); in debug_arm_fir_q15() 256 *pOutput++ = (q15_t) MVE_ASRL_SAT16(acc1, 15); in debug_arm_fir_q15() [all …]
|