Home
last modified time | relevance | path

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

/external/llvm-project/mlir/lib/Analysis/
DAffineStructures.cpp1256 SmallVectorImpl<unsigned> *ubIndices, SmallVectorImpl<unsigned> *eqIndices, in getLowerAndUpperBoundIndices() argument
1293 if (!eqIndices) in getLowerAndUpperBoundIndices()
1301 eqIndices->push_back(r); in getLowerAndUpperBoundIndices()
1491 SmallVector<unsigned, 4> lbIndices, ubIndices, eqIndices; in getLowerAndUpperBound() local
1492 getLowerAndUpperBoundIndices(pos + offset, &lbIndices, &ubIndices, &eqIndices, in getLowerAndUpperBound()
1508 lbExprs.reserve(lbIndices.size() + eqIndices.size()); in getLowerAndUpperBound()
1526 ubExprs.reserve(ubIndices.size() + eqIndices.size()); in getLowerAndUpperBound()
1541 for (auto idx : eqIndices) { in getLowerAndUpperBound()
/external/llvm-project/mlir/include/mlir/Analysis/
DAffineStructures.h540 SmallVectorImpl<unsigned> *eqIndices = nullptr,