Lines Matching refs:numRowsA
352 uint32_t numRowsA = pSrcA->numRows; /* number of rows of input matrix A */ in arm_mat_mult_opt_q31() local
373 if(numRowsA == numColsB && numColsB == numColsA) { in arm_mat_mult_opt_q31()
374 if (numRowsA == 1) in arm_mat_mult_opt_q31()
380 else if(numRowsA == 2) in arm_mat_mult_opt_q31()
382 else if(numRowsA == 3) in arm_mat_mult_opt_q31()
384 else if (numRowsA == 4) in arm_mat_mult_opt_q31()
403 row = numRowsA >> 1; in arm_mat_mult_opt_q31()
520 row = numRowsA & (~0x1); //avoid redundant computation in arm_mat_mult_opt_q31()
578 if (numRowsA & 1u) { in arm_mat_mult_opt_q31()
584 px = pDst->pData + (numColsB) * (numRowsA - 1); in arm_mat_mult_opt_q31()
596 pInA = pSrcA->pData + (numRowsA - 1) * numColsA; in arm_mat_mult_opt_q31()
661 uint16_t numRowsA = pSrcA->numRows; /* Number of rows of input matrix A */ in arm_mat_mult_opt_q31() local
664 uint32_t col, i = 0U, row = numRowsA, colCnt; /* Loop counters */ in arm_mat_mult_opt_q31()