Home
last modified time | relevance | path

Searched refs:otherRow (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/mlir/lib/Analysis/Presburger/
DMatrix.cpp52 void Matrix::swapRows(unsigned row, unsigned otherRow) { in swapRows() argument
53 assert((row < getNumRows() && otherRow < getNumRows()) && in swapRows()
55 if (row == otherRow) in swapRows()
58 std::swap(at(row, col), at(otherRow, col)); in swapRows()
/external/llvm-project/mlir/include/mlir/Analysis/Presburger/
DMatrix.h49 void swapRows(unsigned row, unsigned otherRow);