Searched refs:sourceRow (Results 1 – 2 of 2) sorted by relevance
| /llvm-project-15.0.7/mlir/lib/Analysis/Presburger/ |
| H A D | Matrix.cpp | 182 void Matrix::copyRow(unsigned sourceRow, unsigned targetRow) { in copyRow() argument 183 if (sourceRow == targetRow) in copyRow() 186 at(targetRow, c) = at(sourceRow, c); in copyRow() 194 void Matrix::addToRow(unsigned sourceRow, unsigned targetRow, int64_t scale) { in addToRow() argument 198 at(targetRow, col) += scale * at(sourceRow, col); in addToRow()
|
| /llvm-project-15.0.7/mlir/include/mlir/Analysis/Presburger/ |
| H A D | Matrix.h | 125 void copyRow(unsigned sourceRow, unsigned targetRow); 130 void addToRow(unsigned sourceRow, unsigned targetRow, int64_t scale);
|