Lines Matching refs:numRowsA
334 uint32_t numRowsA = pSrcA->numRows; /* number of rows of input matrix A */ in arm_mat_mult_q15() local
358 if (numRowsA == numColsB && numColsB == numColsA) { in arm_mat_mult_q15()
360 if (numRowsA == 1) { in arm_mat_mult_q15()
365 } else if (numRowsA == 2) in arm_mat_mult_q15()
367 else if (numRowsA == 3) in arm_mat_mult_q15()
369 else if (numRowsA == 4) in arm_mat_mult_q15()
388 row = numRowsA >> 1; in arm_mat_mult_q15()
501 row = numRowsA & (~0x1); //avoid redundant computation in arm_mat_mult_q15()
556 if (numRowsA & 1u) { in arm_mat_mult_q15()
562 px = pDst->pData + (numColsB) * (numRowsA - 1); in arm_mat_mult_q15()
574 pInA = pSrcA->pData + (numRowsA - 1) * numColsA; in arm_mat_mult_q15()
638 uint16_t numRowsA = pSrcA->numRows; /* Number of rows of input matrix A */ local
669 row = numRowsA;
753 uint16_t numRowsA = pSrcA->numRows; /* Number of rows of input matrix A */
754 uint32_t col, i = 0U, row = numRowsA, colCnt; /* Loop counters */