Home
last modified time | relevance | path

Searched refs:p1 (Results 1 – 23 of 23) sorted by relevance

/hal_nxp-latest/mcux/mcux-sdk/CMSIS/DSP/Source/TransformFunctions/
Darm_cfft_f32.c756 void arm_cfft_radix8by2_f32 (arm_cfft_instance_f32 * S, float32_t * p1) in arm_cfft_radix8by2_f32() argument
760 float32_t * p2 = p1 + L; in arm_cfft_radix8by2_f32()
766 pCol1 = p1; in arm_cfft_radix8by2_f32()
773 pMid1 = p1 + L; in arm_cfft_radix8by2_f32()
779 t1[0] = p1[0]; in arm_cfft_radix8by2_f32()
780 t1[1] = p1[1]; in arm_cfft_radix8by2_f32()
781 t1[2] = p1[2]; in arm_cfft_radix8by2_f32()
782 t1[3] = p1[3]; in arm_cfft_radix8by2_f32()
799 *p1++ = t1[0] + t2[0]; in arm_cfft_radix8by2_f32()
800 *p1++ = t1[1] + t2[1]; in arm_cfft_radix8by2_f32()
[all …]
Darm_cfft_radix2_f16.c125 float16_t p0, p1, p2, p3; in arm_radix2_butterfly_f16() local
156 p1 = yt * sinVal; in arm_radix2_butterfly_f16()
163 pSrc[2 * l] = p0 + p1; in arm_radix2_butterfly_f16()
198 p1 = yt * sinVal; in arm_radix2_butterfly_f16()
205 pSrc[2 * l] = p0 + p1; in arm_radix2_butterfly_f16()
261 p1 = yt * sinVal; in arm_radix2_butterfly_f16()
268 pSrc[2 * l] = p0 + p1; in arm_radix2_butterfly_f16()
294 float16_t p0, p1, p2, p3; in arm_radix2_butterfly_inverse_f16() local
317 p1 = yt * sinVal; in arm_radix2_butterfly_inverse_f16()
324 pSrc[2 * l] = p0 - p1; in arm_radix2_butterfly_inverse_f16()
[all …]
Darm_cfft_radix2_f32.c123 float32_t p0, p1, p2, p3; in arm_radix2_butterfly_f32() local
154 p1 = yt * sinVal; in arm_radix2_butterfly_f32()
161 pSrc[2 * l] = p0 + p1; in arm_radix2_butterfly_f32()
196 p1 = yt * sinVal; in arm_radix2_butterfly_f32()
203 pSrc[2 * l] = p0 + p1; in arm_radix2_butterfly_f32()
259 p1 = yt * sinVal; in arm_radix2_butterfly_f32()
266 pSrc[2 * l] = p0 + p1; in arm_radix2_butterfly_f32()
292 float32_t p0, p1, p2, p3; in arm_radix2_butterfly_inverse_f32() local
315 p1 = yt * sinVal; in arm_radix2_butterfly_inverse_f32()
322 pSrc[2 * l] = p0 - p1; in arm_radix2_butterfly_inverse_f32()
[all …]
Darm_cfft_radix2_q31.c99 q31_t p0, p1; in arm_radix2_butterfly_q31() local
124 mult_32x32_keep32_R(p1, yt, cosVal); in arm_radix2_butterfly_q31()
126 multSub_32x32_keep32_R(p1, xt, sinVal); in arm_radix2_butterfly_q31()
129 pSrc[2U * l + 1U] = p1; in arm_radix2_butterfly_q31()
162 mult_32x32_keep32_R(p1, yt, cosVal); in arm_radix2_butterfly_q31()
164 multSub_32x32_keep32_R(p1, xt, sinVal); in arm_radix2_butterfly_q31()
167 pSrc[2U * l + 1U] = p1; in arm_radix2_butterfly_q31()
227 q31_t p0, p1; in arm_radix2_butterfly_inverse_q31() local
252 mult_32x32_keep32_R(p1, yt, cosVal); in arm_radix2_butterfly_inverse_q31()
254 multAcc_32x32_keep32_R(p1, xt, sinVal); in arm_radix2_butterfly_inverse_q31()
[all …]
Darm_cfft_q31.c671 q31_t * p1, in arm_cfft_q31() argument
686 arm_radix4_butterfly_inverse_q31 ( p1, L, (q31_t*)S->pTwiddle, 1 ); in arm_cfft_q31()
693 arm_cfft_radix4by2_inverse_q31 ( p1, L, S->pTwiddle ); in arm_cfft_q31()
706 arm_radix4_butterfly_q31 ( p1, L, (q31_t*)S->pTwiddle, 1 ); in arm_cfft_q31()
713 arm_cfft_radix4by2_q31 ( p1, L, S->pTwiddle ); in arm_cfft_q31()
719 arm_bitreversal_32 ((uint32_t*) p1, S->bitRevLength, S->pBitRevTable); in arm_cfft_q31()
734 q31_t p0, p1; in arm_cfft_radix4by2_q31() local
751 mult_32x32_keep32_R(p1, yt, cosVal); in arm_cfft_radix4by2_q31()
753 multSub_32x32_keep32_R(p1, xt, sinVal); in arm_cfft_radix4by2_q31()
756 pSrc[2 * l + 1] = p1 << 1; in arm_cfft_radix4by2_q31()
[all …]
Darm_cfft_radix8_f16.c61 float16_t p1, p2, p3, p4; in arm_radix8_butterfly_f16() local
216 p1 = co5 * r2; in arm_radix8_butterfly_f16()
220 pSrc[2 * i5] = p1 + p2; in arm_radix8_butterfly_f16()
222 p1 = co3 * r1; in arm_radix8_butterfly_f16()
226 pSrc[2 * i3] = p1 + p2; in arm_radix8_butterfly_f16()
228 p1 = co7 * t1; in arm_radix8_butterfly_f16()
232 pSrc[2 * i7] = p1 + p2; in arm_radix8_butterfly_f16()
254 p1 = co2 * r1; in arm_radix8_butterfly_f16()
258 pSrc[2 * i2] = p1 + p2; in arm_radix8_butterfly_f16()
260 p1 = co8 * r5; in arm_radix8_butterfly_f16()
[all …]
Darm_cfft_radix8_f32.c59 float32_t p1, p2, p3, p4; in arm_radix8_butterfly_f32() local
214 p1 = co5 * r2; in arm_radix8_butterfly_f32()
218 pSrc[2 * i5] = p1 + p2; in arm_radix8_butterfly_f32()
220 p1 = co3 * r1; in arm_radix8_butterfly_f32()
224 pSrc[2 * i3] = p1 + p2; in arm_radix8_butterfly_f32()
226 p1 = co7 * t1; in arm_radix8_butterfly_f32()
230 pSrc[2 * i7] = p1 + p2; in arm_radix8_butterfly_f32()
252 p1 = co2 * r1; in arm_radix8_butterfly_f32()
256 pSrc[2 * i2] = p1 + p2; in arm_radix8_butterfly_f32()
258 p1 = co8 * r5; in arm_radix8_butterfly_f32()
[all …]
Darm_cfft_f64.c203 float64_t p0, p1,p2,p3,a0,a1; in arm_cfft_radix4by2_f64() local
223 p1 = yt * sinVal; in arm_cfft_radix4by2_f64()
230 pSrc[2 * l] = p0 + p1; in arm_cfft_radix4by2_f64()
262 float64_t * p1, in arm_cfft_f64() argument
272 pSrc = p1 + 1; in arm_cfft_f64()
287 arm_radix4_butterfly_f64 (p1, L, (float64_t*)S->pTwiddle, 1U); in arm_cfft_f64()
294 arm_cfft_radix4by2_f64 ( p1, L, (float64_t*)S->pTwiddle); in arm_cfft_f64()
300 arm_bitreversal_64((uint64_t*)p1, S->bitRevLength,S->pBitRevTable); in arm_cfft_f64()
306 pSrc = p1; in arm_cfft_f64()
Darm_cfft_q15.c638 q15_t * p1, in arm_cfft_q15() argument
653 arm_radix4_butterfly_inverse_q15 ( p1, L, (q15_t*)S->pTwiddle, 1 ); in arm_cfft_q15()
660 arm_cfft_radix4by2_inverse_q15 ( p1, L, S->pTwiddle ); in arm_cfft_q15()
673 arm_radix4_butterfly_q15 ( p1, L, (q15_t*)S->pTwiddle, 1 ); in arm_cfft_q15()
680 arm_cfft_radix4by2_q15 ( p1, L, S->pTwiddle ); in arm_cfft_q15()
686 arm_bitreversal_16 ((uint16_t*) p1, S->bitRevLength, S->pBitRevTable); in arm_cfft_q15()
700 q15_t p0, p1, p2, p3; in arm_cfft_radix4by2_q15() local
775 p1 = pSrc[4 * i + 1]; in arm_cfft_radix4by2_q15()
780 p1 <<= 1U; in arm_cfft_radix4by2_q15()
785 pSrc[4 * i + 1] = p1; in arm_cfft_radix4by2_q15()
[all …]
Darm_cfft_radix4_f16.c85 float16_t p0, p1,p2,p3,a0,a1; in arm_cfft_radix4by2_f16() local
105 p1 = yt * sinVal; in arm_cfft_radix4by2_f16()
112 pSrc[2 * l] = p0 + p1; in arm_cfft_radix4by2_f16()
195 float16_t p0,p1,p2,p3,p4,p5; in arm_radix4_butterfly_f16() local
291 p1 = Xb12C_out * si1; in arm_radix4_butterfly_f16()
306 Yb12_out -= p1; in arm_radix4_butterfly_f16()
433 p1 = Xb12C_out * si1; in arm_radix4_butterfly_f16()
448 Yb12_out -= p1; in arm_radix4_butterfly_f16()
697 float16_t p0,p1,p2,p3,p4,p5,p6,p7; in arm_radix4_butterfly_inverse_f16() local
796 p1 = Xb12C_out * si1; in arm_radix4_butterfly_inverse_f16()
[all …]
Darm_cfft_radix4_f32.c130 float32_t p0,p1,p2,p3,p4,p5; in arm_radix4_butterfly_f32() local
226 p1 = Xb12C_out * si1; in arm_radix4_butterfly_f32()
241 Yb12_out -= p1; in arm_radix4_butterfly_f32()
368 p1 = Xb12C_out * si1; in arm_radix4_butterfly_f32()
383 Yb12_out -= p1; in arm_radix4_butterfly_f32()
630 float32_t p0,p1,p2,p3,p4,p5,p6,p7; in arm_radix4_butterfly_inverse_f32() local
729 p1 = Xb12C_out * si1; in arm_radix4_butterfly_inverse_f32()
744 Yb12_out += p1; in arm_radix4_butterfly_inverse_f32()
870 p1 = Xb12C_out * si1; in arm_radix4_butterfly_inverse_f32()
885 Yb12_out += p1; in arm_radix4_butterfly_inverse_f32()
[all …]
Darm_rfft_fast_f16.c49 float16_t p0, p1, p2, p3; /* temporary variables */ in stage_rfft_f16() local
183 p1 = twI * t1a; in stage_rfft_f16()
188 *pOut++ = 0.5f * (xAI - xBI + p1 - p2 ); //xAI in stage_rfft_f16()
328 float16_t p0, p1, p2, p3; /* temporary variables */ in stage_rfft_f16() local
390 p1 = twI * t1a; in stage_rfft_f16()
395 *pOut++ = 0.5f * (xAI - xBI + p1 - p2 ); //xAI in stage_rfft_f16()
Darm_rfft_fast_f32.c44 float32_t p0, p1, p2, p3; /* temporary variables */ in stage_rfft_f32() local
177 p1 = twI * t1a; in stage_rfft_f32()
182 *pOut++ = 0.5f * (xAI - xBI + p1 - p2 ); //xAI in stage_rfft_f32()
322 float32_t p0, p1, p2, p3; /* temporary variables */ in stage_rfft_f32() local
384 p1 = twI * t1a; in stage_rfft_f32()
389 *pOut++ = 0.5f * (xAI - xBI + p1 - p2 ); //xAI in stage_rfft_f32()
Darm_cfft_f16.c783 float16_t * p1, in arm_cfft_f16() argument
793 pSrc = p1 + 1; in arm_cfft_f16()
809 arm_radix4_butterfly_f16 (p1, L, (float16_t*)S->pTwiddle, 1U); in arm_cfft_f16()
816 arm_cfft_radix4by2_f16 ( p1, L, (float16_t*)S->pTwiddle); in arm_cfft_f16()
822 arm_bitreversal_16((uint16_t*)p1, S->bitRevLength,(uint16_t*)S->pBitRevTable); in arm_cfft_f16()
828 pSrc = p1; in arm_cfft_f16()
Darm_rfft_fast_f64.c43 float64_t p0, p1, p2, p3; /* temporary variables */ in stage_rfft_f64() local
104 p1 = twI * t1a; in stage_rfft_f64()
109 *pOut++ = 0.5 * (xAI - xBI + p1 - p2 ); //xAI in stage_rfft_f64()
/hal_nxp-latest/mcux/mcux-sdk/drivers/casper/
Dfsl_casper.c2646 uint32_t *p1 = NULL, *p2 = NULL, x1, x2, *lut, *Tx = NULL, *Ty = NULL, *Tz = NULL; in double_scalar_multiplication() local
2677 p1 = &CASPER_MEM[(20U * N_wordlen + 80U) + 48U * N_wordlen]; in double_scalar_multiplication()
2687 p1 = &CASPER_MEM[(20U * N_wordlen + 80U) + 12U * N_wordlen]; in double_scalar_multiplication()
2695 CASPER_MEMCPY(p1, k1, sizeof(uint32_t) * N_wordlen); in double_scalar_multiplication()
2699 …while (((casper_get_word(&p1[N_wordlen - 1U]) | casper_get_word(&p2[N_wordlen - 1U])) >> 31) == 0U… in double_scalar_multiplication()
2701 shiftleft(p1, p1, 1U); in double_scalar_multiplication()
2708 x1 = casper_get_word(&p1[N_wordlen - 1U]) >> shiftr; in double_scalar_multiplication()
2719 shiftleft(p1, p1, shiftl); in double_scalar_multiplication()
2729 …while ((casper_get_word(&p1[0]) | casper_get_word(&p1[1]) | casper_get_word(&p1[2]) | casper_get_w… in double_scalar_multiplication()
2730 …casper_get_word(&p1[4]) | casper_get_word(&p1[5]) | casper_get_word(&p1[6]) | casper_get_word(&p1[… in double_scalar_multiplication()
[all …]
/hal_nxp-latest/mcux/mcux-sdk/CMSIS/DSP/Include/dsp/
Dtransform_functions.h237 q15_t * p1,
266 q31_t * p1,
297 float32_t * p1,
319 float64_t * p1,
Dtransform_functions_f16.h102 float16_t * p1,
/hal_nxp-latest/mcux/middleware/mcux-secure-subsystem/inc/
Dfsl_sscp.h220 #define SSCP_OP_SET_PARAM(p0, p1, p2, p3, p4, p5, p6) … argument
221 …(((uint32_t)(p0)&0xFu) << 0) | (((uint32_t)(p1)&0xFu) << 4) | (((uint32_t)(p2)&0xFu) << 8) | …
/hal_nxp-latest/mcux/mcux-sdk/drivers/powerquad/
Dfsl_powerquad_cmsis.c213 void arm_cfft_q31(const arm_cfft_instance_q31 *S, q31_t *p1, uint8_t ifftFlag, uint8_t bitReverseFl… in arm_cfft_q31() argument
217 q31_t *pIn = p1; in arm_cfft_q31()
218 q31_t *pOut = p1; in arm_cfft_q31()
235 void arm_cfft_q15(const arm_cfft_instance_q15 *S, q15_t *p1, uint8_t ifftFlag, uint8_t bitReverseFl… in arm_cfft_q15() argument
239 q15_t *pIn = p1; in arm_cfft_q15()
240 q15_t *pOut = p1; in arm_cfft_q15()
/hal_nxp-latest/mcux/mcux-sdk/drivers/mscan/
Dfsl_mscan.c239 uint32_t p1; in MSCAN_GetSegments() local
257 p1 = tqNum * (uint32_t)ideal_sp; in MSCAN_GetSegments()
260 pconfig->timeSeg1 = (uint8_t)(p1 / IDEAL_SP_FACTOR - 1U); in MSCAN_GetSegments()
/hal_nxp-latest/mcux/mcux-sdk/components/osa/
Dfsl_os_abstraction_zephyr.c137 void s_OSA_TaskCallback(void *p1, void *p2, void *p3) in s_OSA_TaskCallback() argument
144 void (*taskBodyFunction)(void *taskArgs) = p1; in s_OSA_TaskCallback()
/hal_nxp-latest/mcux/mcux-sdk/CMSIS/Include/
Darm_math.h2242 q15_t * p1,
2259 q31_t * p1,
2276 float32_t * p1,