Home
last modified time | relevance | path

Searched refs:y (Results 1 – 25 of 53) sorted by relevance

123

/hal_nxp-3.5.0/mcux/mcux-sdk/CMSIS/DSP/Include/dsp/
Dnone.h178 q31_t y) in mult32x64() argument
180 return ((((q63_t) (x & 0x00000000FFFFFFFF) * y) >> 32) + in mult32x64()
181 (((q63_t) (x >> 32) * y) ) ); in mult32x64()
185 #define multAcc_32x32_keep32_R(a, x, y) \ argument
186 a = (q31_t) (((((q63_t) a) << 32) + ((q63_t) x * y) + 0x80000000LL ) >> 32)
189 #define multSub_32x32_keep32_R(a, x, y) \ argument
190 a = (q31_t) (((((q63_t) a) << 32) - ((q63_t) x * y) + 0x80000000LL ) >> 32)
193 #define mult_32x32_keep32_R(a, x, y) \ argument
194 a = (q31_t) (((q63_t) x * y + 0x80000000LL ) >> 32)
197 #define multAcc_32x32_keep32(a, x, y) \ argument
[all …]
Dinterpolation_functions.h118 const float32_t * y; /**< y values */ member
163 const float32_t * y,
/hal_nxp-3.5.0/mcux/mcux-sdk/drivers/flash/
Dfsl_ftfx_utilities.h60 #define BYTE2WORD_1_3(x, y) (B1P4(x) | B3P1(y)) argument
61 #define BYTE2WORD_2_2(x, y) (B2P3(x) | B2P1(y)) argument
62 #define BYTE2WORD_3_1(x, y) (B3P2(x) | B1P1(y)) argument
63 #define BYTE2WORD_1_1_2(x, y, z) (B1P4(x) | B1P3(y) | B2P1(z)) argument
64 #define BYTE2WORD_1_2_1(x, y, z) (B1P4(x) | B2P2(y) | B1P1(z)) argument
65 #define BYTE2WORD_2_1_1(x, y, z) (B2P3(x) | B1P2(y) | B1P1(z)) argument
66 #define BYTE2WORD_1_1_1_1(x, y, z, w) (B1P4(x) | B1P3(y) | B1P2(z) | B1P1(w)) argument
/hal_nxp-3.5.0/mcux/mcux-sdk/CMSIS/DSP/Source/InterpolationFunctions/
Darm_spline_interp_init_f32.c69 const float32_t * y, in arm_spline_init_f32() argument
95 S->y = y; in arm_spline_init_f32()
117 Bi = 3*(y[i+1]-y[i])/hi - 3*(y[i]-y[i-1])/hm1; in arm_spline_init_f32()
158 b[i] = (y[i+1]-y[i])/hi-hi*(cp1+2*c[i])/3; in arm_spline_init_f32()
Darm_linear_interp_f16.c86 float16_t y; in arm_linear_interp_f16() local
99 y = pYData[0]; in arm_linear_interp_f16()
104 y = pYData[S->nValues - 1]; in arm_linear_interp_f16()
117 y = y0 + (x - x0) * ((y1 - y0) / (x1 - x0)); in arm_linear_interp_f16()
122 return (y); in arm_linear_interp_f16()
Darm_linear_interp_f32.c83 float32_t y; in arm_linear_interp_f32() local
96 y = pYData[0]; in arm_linear_interp_f32()
101 y = pYData[S->nValues - 1]; in arm_linear_interp_f32()
114 y = y0 + (x - x0) * ((y1 - y0) / (x1 - x0)); in arm_linear_interp_f32()
119 return (y); in arm_linear_interp_f32()
Darm_linear_interp_q7.c58 q31_t y; /* output */ in arm_linear_interp_q7() local
87 y = ((y0 * (0xFFFFF - fract))); in arm_linear_interp_q7()
90 y += (y1 * fract); in arm_linear_interp_q7()
93 return (q7_t) (y >> 20); in arm_linear_interp_q7()
Darm_linear_interp_q15.c58 q63_t y; /* output */ in arm_linear_interp_q15() local
87 y = ((q63_t) y0 * (0xFFFFF - fract)); in arm_linear_interp_q15()
90 y += ((q63_t) y1 * (fract)); in arm_linear_interp_q15()
93 return (q15_t) (y >> 20); in arm_linear_interp_q15()
Darm_linear_interp_q31.c59 q31_t y; /* output */ in arm_linear_interp_q31() local
88 y = ((q31_t) ((q63_t) y0 * (0x7FFFFFFF - fract) >> 32)); in arm_linear_interp_q31()
91 y += ((q31_t) (((q63_t) y1 * fract) >> 32)); in arm_linear_interp_q31()
94 return (y << 1U); in arm_linear_interp_q31()
Darm_spline_interp_f32.c153 const float32_t * y = S->y; in arm_spline_f32() local
187 aiv = vdupq_n_f32(y[i]); in arm_spline_f32()
224 …*pDst = y[i]+b[i]*(x_sc-x[i])+c[i]*(x_sc-x[i])*(x_sc-x[i])+d[i]*(x_sc-x[i])*(x_sc-x[i])*(x_sc-x[i]… in arm_spline_f32()
274 …*pDst = y[i-1]+b[i-1]*(x_sc-x[i-1])+c[i-1]*(x_sc-x[i-1])*(x_sc-x[i-1])+d[i-1]*(x_sc-x[i-1])*(x_sc-… in arm_spline_f32()
/hal_nxp-3.5.0/mcux/mcux-sdk/middleware/issdk/algorithms/sensorfusion/sources/
Dapproximations.c109 float fatan2_deg(float y, float x) in fatan2_deg() argument
115 if (y > 0.0F) return 90.0F; in fatan2_deg()
118 if (y < 0.0F) return -90.0F; in fatan2_deg()
126 if (x > 0.0F) return (fatan_deg(y / x)); in fatan2_deg()
129 if ((x < 0.0F) && (y > 0.0F)) return (180.0F + fatan_deg(y / x)); in fatan2_deg()
132 return (-180.0F + fatan_deg(y / x)); in fatan2_deg()
/hal_nxp-3.5.0/mcux/mcux-sdk/CMSIS/Include/
Darm_math.h712 q31_t y) in mult32x64() argument
714 return ((((q63_t) (x & 0x00000000FFFFFFFF) * y) >> 32) + in mult32x64()
715 (((q63_t) (x >> 32) * y) ) ); in mult32x64()
869 uint32_t y) in __QADD8() argument
873 r = __SSAT(((((q31_t)x << 24) >> 24) + (((q31_t)y << 24) >> 24)), 8) & (int32_t)0x000000FF; in __QADD8()
874 s = __SSAT(((((q31_t)x << 16) >> 24) + (((q31_t)y << 16) >> 24)), 8) & (int32_t)0x000000FF; in __QADD8()
875 t = __SSAT(((((q31_t)x << 8) >> 24) + (((q31_t)y << 8) >> 24)), 8) & (int32_t)0x000000FF; in __QADD8()
876 u = __SSAT(((((q31_t)x ) >> 24) + (((q31_t)y ) >> 24)), 8) & (int32_t)0x000000FF; in __QADD8()
887 uint32_t y) in __QSUB8() argument
891 r = __SSAT(((((q31_t)x << 24) >> 24) - (((q31_t)y << 24) >> 24)), 8) & (int32_t)0x000000FF; in __QSUB8()
[all …]
/hal_nxp-3.5.0/mcux/mcux-sdk/CMSIS/DSP/Source/FilteringFunctions/
Darm_conv_f32.c703 float32x4_t y = vdupq_n_f32(0) ; in arm_conv_f32() local
711 y = vld1q_f32(py-3); in arm_conv_f32()
713 y = vrev64q_f32(y); in arm_conv_f32()
714 y = vcombine_f32(vget_high_f32(y), vget_low_f32(y)); in arm_conv_f32()
716 res = vmlaq_f32(res,x,y); in arm_conv_f32()
854 float32x4_t y = vdupq_n_f32(0) ; in arm_conv_f32() local
860 y = vld1q_f32(py-3); in arm_conv_f32()
862 y = vrev64q_f32(y); in arm_conv_f32()
863 y = vcombine_f32(vget_high_f32(y), vget_low_f32(y)); in arm_conv_f32()
865 res = vmlaq_f32(res,x,y); in arm_conv_f32()
Darm_levinson_durbin_f32.c184 float32_t x,y; in arm_levinson_durbin_f32() local
186 y = a[p-1-j] - k * a[j]; in arm_levinson_durbin_f32()
189 a[p-1-j] = y; in arm_levinson_durbin_f32()
197 float32_t x,y; in arm_levinson_durbin_f32() local
199 y = a[p-1-j] - k * a[j]; in arm_levinson_durbin_f32()
202 a[p-1-j] = y; in arm_levinson_durbin_f32()
250 float32_t x,y; in arm_levinson_durbin_f32() local
253 y=a[p-1-j] - k * a[j]; in arm_levinson_durbin_f32()
256 a[p-1-j] = y; in arm_levinson_durbin_f32()
Darm_levinson_durbin_q31.c255 q31_t x,y; in arm_levinson_durbin_q31() local
261 y = a[p-1-j] - mul32x32(k , a[j]); in arm_levinson_durbin_q31()
264 a[p-1-j] = y; in arm_levinson_durbin_q31()
273 q31_t x,y; in arm_levinson_durbin_q31() local
279 y = a[p-1-j] - mul32x32(k , a[j]); in arm_levinson_durbin_q31()
282 a[p-1-j] = y; in arm_levinson_durbin_q31()
344 q31_t x,y; in arm_levinson_durbin_q31() local
350 y = a[p-1-j] - mul32x32(k , a[j]); in arm_levinson_durbin_q31()
353 a[p-1-j] = y; in arm_levinson_durbin_q31()
Darm_levinson_durbin_f16.c187 _Float16 x,y; in arm_levinson_durbin_f16() local
190 y=(_Float16)a[p-1-j] - (_Float16)k * (_Float16)a[j]; in arm_levinson_durbin_f16()
193 a[p-1-j] = y; in arm_levinson_durbin_f16()
248 _Float16 x,y; in arm_levinson_durbin_f16() local
251 y=(_Float16)a[p-1-j] - (_Float16)k * (_Float16)a[j]; in arm_levinson_durbin_f16()
254 a[p-1-j] = y; in arm_levinson_durbin_f16()
Darm_correlate_f32.c435 float32x4_t x,y; in arm_correlate_f32() local
442 y = vld1q_f32(py); in arm_correlate_f32()
444 res = vmlaq_f32(res,x, y); in arm_correlate_f32()
779 float32x4_t x,y; in arm_correlate_f32() local
786 y = vld1q_f32(py); in arm_correlate_f32()
788 res = vmlaq_f32(res,x, y); in arm_correlate_f32()
927 float32x4_t x,y; in arm_correlate_f32() local
934 y = vld1q_f32(py); in arm_correlate_f32()
936 res = vmlaq_f32(res,x, y); in arm_correlate_f32()
Darm_biquad_cascade_df1_f32.c366 float32x2x2_t y; in arm_biquad_cascade_df1_f32() local
425 y.val[0] = Yn; in arm_biquad_cascade_df1_f32()
441 y.val[1] = Yn; in arm_biquad_cascade_df1_f32()
443 tmp = vcombine_f32(y.val[0], y.val[1]); in arm_biquad_cascade_df1_f32()
/hal_nxp-3.5.0/mcux/mcux-sdk/components/ektf2k/
Dfsl_ektf2k.c160 *touch_y = touch_array[i].y; in EKTF2K_GetSingleTouch()
178 int x, y; in EKTF2K_GetMultiTouch() local
200 EKTF2K_ParseTouchData(&touch_data->TOUCH[i], &x, &y); in EKTF2K_GetMultiTouch()
202 touch_array[i].y = y; in EKTF2K_GetMultiTouch()
/hal_nxp-3.5.0/mcux/middleware/wireless/framework_5.3.3/XCVR/MKW40Z4/
DBLEDefaults.h399 #define MAX(x,y) ((x) > (y) ? (x) : (y)) argument
/hal_nxp-3.5.0/mcux/mcux-sdk/CMSIS/DSP/Source/DistanceFunctions/
Darm_jensenshannon_distance_f16.c55 __STATIC_INLINE float16_t rel_entr(float16_t x, float16_t y) in rel_entr() argument
57 return (x * logf(x / y)); in rel_entr()
Darm_jensenshannon_distance_f32.c42 __STATIC_INLINE float32_t rel_entr(float32_t x, float32_t y) in rel_entr() argument
44 return (x * logf(x / y)); in rel_entr()
/hal_nxp-3.5.0/mcux/mcux-sdk/scripts/kconfig/
Dguiconfig.py901 if tree.identify_element(event.x, event.y) == "image":
902 item = tree.identify_row(event.y)
924 tree.identify_region(event.x, event.y) in ("heading", "separator")
1278 y = _root.winfo_rooty() + (_root.winfo_height() - dialog_height)//2
1285 if y + dialog_height > screen_height:
1286 y = screen_height - dialog_height
1287 elif y < 0:
1288 y = 0
1290 dialog.geometry("+{}+{}".format(x, y))
1763 if event and (tree.identify_element(event.x, event.y) == "image" or
[all …]
/hal_nxp-3.5.0/mcux/mcux-sdk/drivers/lcdif/
Dfsl_lcdif.h452 static inline void LCDIF_SetCursorHotspotPosition(LCDIF_Type *base, uint16_t x, uint16_t y) in LCDIF_SetCursorHotspotPosition() argument
455 … ((uint32_t)y << LCDIF_CURSORLOCATION_Y_SHIFT) | ((uint32_t)x << LCDIF_CURSORLOCATION_X_SHIFT); in LCDIF_SetCursorHotspotPosition()
/hal_nxp-3.5.0/s32/drivers/s32ze/BaseNXP/header/
DS32Z2_MPU.h211 #define S32_MPU_MAIR_ATTRx(x,y) (((uint32_t)(((uint32_t)(y))<<S32_MPU_MAIR_ATTRx_S… argument

123