Home
last modified time | relevance | path

Searched refs:pSrc2 (Results 1 – 14 of 14) sorted by relevance

/cmsis-dsp-latest/Source/TransformFunctions/
Darm_rfft_q15.c242 q15_t *pSrc1, *pSrc2; in arm_split_rfft_q15() local
252 pSrc2 = &pSrc[(2U * fftLen) - 2U]; in arm_split_rfft_q15()
284 outR = __SMLAD(read_q15x2 (pSrc2), read_q15x2((q15_t *) pCoefB), outR) >> 16U; in arm_split_rfft_q15()
288 outI = __SMUSDX(read_q15x2_da (&pSrc2), read_q15x2((q15_t *) pCoefB)); in arm_split_rfft_q15()
290 outI = __SMUSDX(read_q15x2 ((q15_t *) pCoefB), read_q15x2_da (&pSrc2)); in arm_split_rfft_q15()
331 outR = outR + (*pSrc2 * *pCoefB); in arm_split_rfft_q15()
332 outR = (outR + (*(pSrc2 + 1) * *(pCoefB + 1))) >> 16; in arm_split_rfft_q15()
341 outI = *pSrc2 * *(pCoefB + 1); in arm_split_rfft_q15()
342 outI = outI - (*(pSrc2 + 1) * *pCoefB); in arm_split_rfft_q15()
348 pSrc2 -= 2U; in arm_split_rfft_q15()
[all …]
Darm_rfft_f32.c157 …float32_t *pSrc1 = &pSrc[2], *pSrc2 = &pSrc[(2U * fftLen) - 1U]; /* temp pointers for input b… in arm_split_rfft_f32() local
190 outR -= (*pSrc1 + *pSrc2) * CoefA2; in arm_split_rfft_f32()
197 outI -= *pSrc2-- * CoefB1; in arm_split_rfft_f32()
199 outI -= *pSrc2 * CoefA2; in arm_split_rfft_f32()
202 outR += *pSrc2-- * CoefB1; in arm_split_rfft_f32()
250 float32_t *pSrc1 = &pSrc[0], *pSrc2 = &pSrc[(2U * fftLen) + 1U]; in arm_split_rifft_f32() local
279 outR += (*pSrc1 + *pSrc2) * CoefA2; in arm_split_rifft_f32()
287 outI -= *pSrc2-- * CoefB1; in arm_split_rifft_f32()
290 outR += *pSrc2 * CoefB1; in arm_split_rifft_f32()
293 outI += *pSrc2-- * CoefA2; in arm_split_rifft_f32()
/cmsis-dsp-latest/Source/FilteringFunctions/
Darm_conv_partial_q31.c74 const q31_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_partial_q31() local
161 pSrc2 = pIn2 + firstIndex; in arm_conv_partial_q31()
162 py = pSrc2; in arm_conv_partial_q31()
220 py = ++pSrc2; in arm_conv_partial_q31()
252 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_partial_q31()
253 py = pSrc2; in arm_conv_partial_q31()
376 py = pSrc2; in arm_conv_partial_q31()
441 py = pSrc2; in arm_conv_partial_q31()
478 py = pSrc2; in arm_conv_partial_q31()
513 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_partial_q31()
[all …]
Darm_conv_partial_fast_q15.c71 const q15_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_partial_fast_q15() local
153 pSrc2 = pIn2 + firstIndex; in arm_conv_partial_fast_q15()
154 py = pSrc2; in arm_conv_partial_fast_q15()
187 py = ++pSrc2; in arm_conv_partial_fast_q15()
246 py = ++pSrc2 - 1U; in arm_conv_partial_fast_q15()
278 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_partial_fast_q15()
279 py = pSrc2; in arm_conv_partial_fast_q15()
463 py = pSrc2; in arm_conv_partial_fast_q15()
516 py = pSrc2; in arm_conv_partial_fast_q15()
553 py = pSrc2; in arm_conv_partial_fast_q15()
[all …]
Darm_conv_partial_fast_q31.c71 const q31_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_partial_fast_q31() local
158 pSrc2 = pIn2 + firstIndex; in arm_conv_partial_fast_q31()
159 py = pSrc2; in arm_conv_partial_fast_q31()
222 py = ++pSrc2; in arm_conv_partial_fast_q31()
254 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_partial_fast_q31()
255 py = pSrc2; in arm_conv_partial_fast_q31()
397 py = pSrc2; in arm_conv_partial_fast_q31()
467 py = pSrc2; in arm_conv_partial_fast_q31()
505 py = pSrc2; in arm_conv_partial_fast_q31()
540 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_partial_fast_q31()
[all …]
Darm_conv_partial_q15.c77 const q15_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_partial_q15() local
159 pSrc2 = pIn2 + firstIndex; in arm_conv_partial_q15()
160 py = pSrc2; in arm_conv_partial_q15()
193 py = ++pSrc2; in arm_conv_partial_q15()
252 py = ++pSrc2 - 1U; in arm_conv_partial_q15()
284 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_partial_q15()
285 py = pSrc2; in arm_conv_partial_q15()
475 py = pSrc2; in arm_conv_partial_q15()
528 py = pSrc2; in arm_conv_partial_q15()
565 py = pSrc2; in arm_conv_partial_q15()
[all …]
Darm_conv_partial_f32.c101 const float32_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_partial_f32() local
279 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_partial_f32()
280 py = pSrc2; in arm_conv_partial_f32()
422 py = pSrc2; in arm_conv_partial_f32()
487 py = pSrc2; in arm_conv_partial_f32()
524 py = pSrc2; in arm_conv_partial_f32()
559 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_partial_f32()
560 py = pSrc2; in arm_conv_partial_f32()
619 py = pSrc2; in arm_conv_partial_f32()
Darm_conv_fast_q31.c74 const q31_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_fast_q31() local
220 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_fast_q31()
221 py = pSrc2; in arm_conv_fast_q31()
365 py = pSrc2; in arm_conv_fast_q31()
423 py = pSrc2; in arm_conv_fast_q31()
461 py = pSrc2; in arm_conv_fast_q31()
488 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_fast_q31()
489 py = pSrc2; in arm_conv_fast_q31()
547 py = pSrc2; in arm_conv_fast_q31()
Darm_conv_partial_q7.c74 const q7_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_partial_q7() local
163 pSrc2 = pIn2 + firstIndex; in arm_conv_partial_q7()
164 py = pSrc2; in arm_conv_partial_q7()
238 py = ++pSrc2; in arm_conv_partial_q7()
270 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_partial_q7()
271 py = pSrc2; in arm_conv_partial_q7()
459 py = pSrc2; in arm_conv_partial_q7()
544 py = pSrc2; in arm_conv_partial_q7()
581 py = pSrc2; in arm_conv_partial_q7()
616 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_partial_q7()
[all …]
Darm_conv_fast_q15.c75 const q15_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_fast_q15() local
255 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_fast_q15()
256 py = pSrc2; in arm_conv_fast_q15()
440 py = pSrc2; in arm_conv_fast_q15()
493 py = pSrc2; in arm_conv_fast_q15()
530 py = pSrc2; in arm_conv_fast_q15()
556 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_fast_q15()
557 pIn2 = pSrc2 - 1U; in arm_conv_fast_q15()
652 py = pSrc2; in arm_conv_fast_q15()
Darm_conv_q31.c241 const q31_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_q31() local
392 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_q31()
393 py = pSrc2; in arm_conv_q31()
512 py = pSrc2; in arm_conv_q31()
577 py = pSrc2; in arm_conv_q31()
614 py = pSrc2; in arm_conv_q31()
641 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_q31()
642 py = pSrc2; in arm_conv_q31()
702 py = pSrc2; in arm_conv_q31()
Darm_conv_q15.c245 const q15_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_q15() local
428 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_q15()
429 py = pSrc2; in arm_conv_q15()
618 py = pSrc2; in arm_conv_q15()
671 py = pSrc2; in arm_conv_q15()
708 py = pSrc2; in arm_conv_q15()
736 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_q15()
737 pIn2 = pSrc2 - 1U; in arm_conv_q15()
833 py = pSrc2; in arm_conv_q15()
Darm_conv_f32.c268 const float32_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_f32() local
462 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_f32()
463 py = pSrc2; in arm_conv_f32()
681 py = pSrc2; in arm_conv_f32()
779 py = pSrc2; in arm_conv_f32()
816 py = pSrc2; in arm_conv_f32()
843 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_f32()
844 py = pSrc2; in arm_conv_f32()
929 py = pSrc2; in arm_conv_f32()
Darm_conv_q7.c235 const q7_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_q7() local
404 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_q7()
405 py = pSrc2; in arm_conv_q7()
593 py = pSrc2; in arm_conv_q7()
679 py = pSrc2; in arm_conv_q7()
716 py = pSrc2; in arm_conv_q7()
743 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_q7()
744 py = pSrc2; in arm_conv_q7()
819 py = pSrc2; in arm_conv_q7()