Lines Matching refs:numRowsA
282 uint32_t numRowsA = pSrcA->numRows; /* number of rows of input matrix A */ in arm_mat_mult_q7() local
308 if(numRowsA == numColsB && numColsB == numColsA) { in arm_mat_mult_q7()
309 if(numRowsA == 2) in arm_mat_mult_q7()
311 else if(numRowsA == 3) in arm_mat_mult_q7()
313 else if (numRowsA == 4) in arm_mat_mult_q7()
330 row = numRowsA >> 1; in arm_mat_mult_q7()
448 row = numRowsA & (~0x1); //avoid redundant computation in arm_mat_mult_q7()
507 if (numRowsA & 1u) in arm_mat_mult_q7()
514 px = pDst->pData + (numColsB) * (numRowsA - 1); in arm_mat_mult_q7()
527 pInA = pSrcA->pData + (numRowsA - 1) * numColsA; in arm_mat_mult_q7()
590 uint16_t numRowsA = pSrcA->numRows; /* number of rows of input matrix A */ in arm_mat_mult_q7() local
591 uint16_t col, i = 0U, row = numRowsA, colCnt; /* loop counters */ in arm_mat_mult_q7()