Home
last modified time | relevance | path

Searched refs:tempV (Results 1 – 9 of 9) sorted by relevance

/hal_nxp-3.5.0/mcux/mcux-sdk/CMSIS/DSP/Source/DistanceFunctions/
Darm_euclidean_distance_f16.c71 f16x8_t a, b, accumV, tempV; in arm_euclidean_distance_f16() local
80 tempV = vsubq(a, b); in arm_euclidean_distance_f16()
81 accumV = vfmaq(accumV, tempV, tempV); in arm_euclidean_distance_f16()
99 tempV = vsubq(a, b); in arm_euclidean_distance_f16()
100 accumV = vfmaq_m(accumV, tempV, tempV, p0); in arm_euclidean_distance_f16()
Darm_cityblock_distance_f32.c56 f32x4_t a, b, accumV, tempV; in arm_cityblock_distance_f32() local
65 tempV = vabdq(a, b); in arm_cityblock_distance_f32()
66 accumV = vaddq(accumV, tempV); in arm_cityblock_distance_f32()
84 tempV = vabdq(a, b); in arm_cityblock_distance_f32()
85 accumV = vaddq_m(accumV, accumV, tempV, p0); in arm_cityblock_distance_f32()
100 float32x4_t a,b,accumV, tempV; in arm_cityblock_distance_f32() local
111 tempV = vabdq_f32(a,b); in arm_cityblock_distance_f32()
112 accumV = vaddq_f32(accumV, tempV); in arm_cityblock_distance_f32()
Darm_euclidean_distance_f32.c58 f32x4_t a, b, accumV, tempV; in arm_euclidean_distance_f32() local
67 tempV = vsubq(a, b); in arm_euclidean_distance_f32()
68 accumV = vfmaq(accumV, tempV, tempV); in arm_euclidean_distance_f32()
86 tempV = vsubq(a, b); in arm_euclidean_distance_f32()
87 accumV = vfmaq_m(accumV, tempV, tempV, p0); in arm_euclidean_distance_f32()
Darm_cityblock_distance_f16.c69 f16x8_t a, b, accumV, tempV; in arm_cityblock_distance_f16() local
78 tempV = vabdq(a, b); in arm_cityblock_distance_f16()
79 accumV = vaddq(accumV, tempV); in arm_cityblock_distance_f16()
97 tempV = vabdq(a, b); in arm_cityblock_distance_f16()
98 accumV = vaddq_m(accumV, accumV, tempV, p0); in arm_cityblock_distance_f16()
/hal_nxp-3.5.0/mcux/mcux-sdk/CMSIS/DSP/Source/SupportFunctions/
Darm_weighted_sum_f32.c109 float32x2_t tempV; in arm_weighted_sum_f32() local
140 tempV = vpadd_f32(vget_low_f32(accum1V),vget_high_f32(accum1V)); in arm_weighted_sum_f32()
141 accum1 = vget_lane_f32(tempV, 0) + vget_lane_f32(tempV, 1); in arm_weighted_sum_f32()
143 tempV = vpadd_f32(vget_low_f32(accum2V),vget_high_f32(accum2V)); in arm_weighted_sum_f32()
144 accum2 = vget_lane_f32(tempV, 0) + vget_lane_f32(tempV, 1); in arm_weighted_sum_f32()
/hal_nxp-3.5.0/mcux/mcux-sdk/CMSIS/NN/Source/PoolingFunctions/
Darm_avgpool_s8.c125 int8x16_t tempV; in arm_avgpool_s8() local
140 tempV = vldrbq_s8(pTmpInner); in arm_avgpool_s8()
142 tempVLO = vmovlbq_s8(tempV); in arm_avgpool_s8()
143 tempVHI = vmovltq_s8(tempV); in arm_avgpool_s8()
204 tempV = vmovnbq_s16(tempV, tempVLO); in arm_avgpool_s8()
205 tempV = vmovntq_s16(tempV, tempVHI); in arm_avgpool_s8()
207 vstrbq_s8(pDst, tempV); in arm_avgpool_s8()
/hal_nxp-3.5.0/mcux/mcux-sdk/CMSIS/DSP/Source/FilteringFunctions/
Darm_lms_f32.c184 float32x4_t tempV, sumV, xV, bV; in arm_lms_f32() local
314 tempV = vld1q_f32(pState); in arm_lms_f32()
315 vst1q_f32(pStateCurnt,tempV); in arm_lms_f32()
Darm_lms_norm_f32.c179 float32x4_t tempV, sumV, xV, bV; in arm_lms_norm_f32() local
326 tempV = vld1q_f32(pState); in arm_lms_norm_f32()
327 vst1q_f32(pStateCurnt,tempV); in arm_lms_norm_f32()
Darm_fir_interpolate_f32.c494 float32x2_t tempV; in arm_fir_interpolate_f32() local
754 tempV = vpadd_f32(vget_low_f32(sum0v),vget_high_f32(sum0v)); in arm_fir_interpolate_f32()
755 sum0 = vget_lane_f32(tempV, 0) + vget_lane_f32(tempV, 1); in arm_fir_interpolate_f32()