Lines Matching refs:numRowsA
294 int numRowsA = pSrcA->numRows; /* number of rows of input matrix A */ in arm_mat_mult_f32() local
314 if(numRowsA == numColsB && numColsB == numColsA) { in arm_mat_mult_f32()
315 if (numRowsA == 1) in arm_mat_mult_f32()
320 else if(numRowsA == 2) in arm_mat_mult_f32()
322 else if(numRowsA == 3) in arm_mat_mult_f32()
324 else if(numRowsA == 4) in arm_mat_mult_f32()
329 i = numRowsA >> 2; in arm_mat_mult_f32()
449 if (numRowsA & 3) in arm_mat_mult_f32()
451 i = numRowsA & 3; in arm_mat_mult_f32()
559 uint16_t numRowsA = pSrcA->numRows; /* number of rows of input matrix A */ in arm_mat_mult_f32() local
564 uint32_t col, i = 0U, j, row = numRowsA, rowCnt, colCnt; /* loop counters */ in arm_mat_mult_f32()
896 uint16_t numRowsA = pSrcA->numRows; /* Number of rows of input matrix A */ in arm_mat_mult_f32() local
899 uint32_t col, i = 0U, row = numRowsA, colCnt; /* Loop counters */ in arm_mat_mult_f32()