Home
last modified time | relevance | path

Searched refs:pInT1 (Results 1 – 3 of 3) sorted by relevance

/hal_nxp-3.6.0/mcux/mcux-sdk/CMSIS/DSP/Source/MatrixFunctions/
Darm_mat_inverse_f32.c79 float32_t *pInT1, *pInT2; /* Temporary input data matrix pointer */ in arm_mat_inverse_f32() local
202 pInT1 = pIn + (l * numCols); in arm_mat_inverse_f32()
211 in = *pInT1; in arm_mat_inverse_f32()
217 if (*pInT1 == 0.0f) in arm_mat_inverse_f32()
227 pInT2 = pInT1 + (numCols * i); in arm_mat_inverse_f32()
240 pTmpA = pInT1; in arm_mat_inverse_f32()
273 pInT1 += numCols - l; in arm_mat_inverse_f32()
339 pInT1 = pPivotRowIn; in arm_mat_inverse_f32()
347 pTmpA = pInT1; in arm_mat_inverse_f32()
376 pInT1 += numCols - l; in arm_mat_inverse_f32()
[all …]
Darm_mat_inverse_f64.c57 float64_t *pInT1, *pInT2; /* Temporary input data matrix pointer */ local
168 pInT1 = pIn + (l * numCols);
175 in = *pInT1;
180 if (*pInT1 == 0.0)
187 pInT2 = pInT1 + (numCols * i);
202 *pInT2++ = *pInT1;
203 *pInT1++ = Xchg;
246 pInT1 = pPivotRowIn;
260 in1 = *pInT1;
261 *pInT1++ = in1 / in;
[all …]
Darm_mat_inverse_f16.c61 float16_t *pInT1, *pInT2; /* Temporary input data matrix pointer */ in arm_mat_inverse_f16() local
184 pInT1 = pIn + (l * numCols); in arm_mat_inverse_f16()
193 in = *pInT1; in arm_mat_inverse_f16()
199 if (*pInT1 == 0.0f16) in arm_mat_inverse_f16()
209 pInT2 = pInT1 + (numCols * i); in arm_mat_inverse_f16()
222 pTmpA = pInT1; in arm_mat_inverse_f16()
255 pInT1 += numCols - l; in arm_mat_inverse_f16()
321 pInT1 = pPivotRowIn; in arm_mat_inverse_f16()
329 pTmpA = pInT1; in arm_mat_inverse_f16()
358 pInT1 += numCols - l; in arm_mat_inverse_f16()
[all …]