Lines Matching refs:rows
35 uint16_t rows, columns; in test_op2() local
59 rows = *dims++; in test_op2()
63 mat_in1.numRows = mat_in2.numRows = mat_out.numRows = rows; in test_op2()
67 memcpy(mat_in1.pData, in_com1, rows * columns * sizeof(q15_t)); in test_op2()
68 memcpy(mat_in2.pData, in_com2, rows * columns * sizeof(q15_t)); in test_op2()
89 mat_out.pData += (rows * columns); in test_op2()
119 uint16_t rows, columns; in test_op1() local
138 rows = *dims++; in test_op1()
142 mat_in1.numRows = rows; in test_op1()
144 mat_out.numRows = transpose ? columns : rows; in test_op1()
145 mat_out.numCols = transpose ? rows : columns; in test_op1()
148 memcpy(mat_in1.pData, in_com1, rows * columns * sizeof(q15_t)); in test_op1()
168 mat_out.pData += (rows * columns); in test_op1()
197 uint16_t rows, internal; in test_op2v() local
217 rows = *dims++; in test_op2v()
221 mat_in1.numRows = rows; in test_op2v()
226 2 * rows * internal * sizeof(q15_t)); in test_op2v()
239 output += rows; in test_op2v()
266 uint16_t rows, columns; in test_op1c() local
285 rows = *dims++; in test_op1c()
289 mat_in1.numRows = rows; in test_op1c()
291 mat_out.numRows = transpose ? columns : rows; in test_op1c()
292 mat_out.numCols = transpose ? rows : columns; in test_op1c()
296 in_cmplx1, 2 * rows * columns * sizeof(q15_t)); in test_op1c()
312 mat_out.pData += 2 * (rows * columns); in test_op1c()