Home
last modified time | relevance | path

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

/external/llvm-project/mlir/lib/Analysis/Presburger/
DMatrix.cpp61 void Matrix::swapColumns(unsigned column, unsigned otherColumn) { in swapColumns() argument
62 assert((column < getNumColumns() && otherColumn < getNumColumns()) && in swapColumns()
64 if (column == otherColumn) in swapColumns()
67 std::swap(at(row, column), at(row, otherColumn)); in swapColumns()
/external/llvm-project/mlir/include/mlir/Analysis/Presburger/
DMatrix.h46 void swapColumns(unsigned column, unsigned otherColumn);