Home
last modified time | relevance | path

Searched refs:currentPos (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Analysis/Presburger/
H A DIntegerRelation.cpp606 unsigned currentPos = 0; in isEmpty() local
607 while (currentPos < tmpCst.getNumVars()) { in isEmpty()
608 tmpCst.gaussianEliminateVars(currentPos, tmpCst.getNumVars()); in isEmpty()
609 ++currentPos; in isEmpty()
1901 unsigned currentPos = pos; in projectOut() local
1905 while (currentPos < getNumVars()) { in projectOut()
1907 gaussianEliminateVars(currentPos, currentPos + numToEliminate); in projectOut()
1908 ++currentPos; in projectOut()
/llvm-project-15.0.7/mlir/lib/Pass/
H A DPassRegistry.cpp212 auto tryProcessPunct = [&](size_t &currentPos, char punct) { in parseNextArg() argument
213 if (options[currentPos] != punct) in parseNextArg()
215 size_t nextIt = options.find_first_of(punct, currentPos + 1); in parseNextArg()
217 currentPos = nextIt; in parseNextArg()
/llvm-project-15.0.7/mlir/lib/ExecutionEngine/
H A DSparseTensorUtils.cpp1027 uint64_t currentPos = 0; in SparseTensorStorage() local
1028 nnz.forallIndices(r, [this, &currentPos, r](uint64_t n) { in SparseTensorStorage()
1029 currentPos += n; in SparseTensorStorage()
1030 appendPointer(r, currentPos); in SparseTensorStorage()
1061 const uint64_t currentPos = pointers[r][parentPos]; in SparseTensorStorage() local
1067 writeIndex(r, currentPos, ind[r]); in SparseTensorStorage()
1068 parentPos = currentPos; in SparseTensorStorage()