Home
last modified time | relevance | path

Searched refs:insertRows (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/mlir/unittests/Analysis/Presburger/
H A DMatrixTest.cpp132 TEST(MatrixTest, insertRows) { in TEST() argument
141 mat.insertRows(3, 100); in TEST()
158 mat.insertRows(0, 0); in TEST()
/llvm-project-15.0.7/mlir/include/mlir/Analysis/Presburger/
H A DMatrix.h106 void insertRows(unsigned pos, unsigned count);
/llvm-project-15.0.7/mlir/lib/Analysis/Presburger/
H A DMatrix.cpp158 void Matrix::insertRow(unsigned pos) { insertRows(pos, 1); } in insertRow()
159 void Matrix::insertRows(unsigned pos, unsigned count) { in insertRows() function in Matrix