Home
last modified time | relevance | path

Searched refs:removeRows (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/mlir/include/mlir/Analysis/Presburger/
H A DMatrix.h122 void removeRows(unsigned pos, unsigned count);
/llvm-project-15.0.7/mlir/lib/Analysis/Presburger/
H A DMatrix.cpp172 void Matrix::removeRow(unsigned pos) { removeRows(pos, 1); } in removeRow()
173 void Matrix::removeRows(unsigned pos, unsigned count) { in removeRows() function in Matrix
H A DIntegerRelation.cpp359 equalities.removeRows(start, end - start); in removeEqualityRange()
365 inequalities.removeRows(start, end - start); in removeInequalityRange()
/llvm-project-15.0.7/mlir/unittests/Analysis/Presburger/
H A DMatrixTest.cpp156 mat.removeRows(3, 100); in TEST()