Lines Matching defs:lbounds
101 llvm::SmallVectorImpl<mlir::Value> &lbounds,
110 lbounds.push_back(dimInfo.getLowerBound());
124 llvm::SmallVector<mlir::Value> lbounds = getExplicitLbounds(varIface);
125 if (!lbounds.empty())
126 return lbounds;
385 llvm::SmallVector<mlir::Value> lbounds =
387 if (!lbounds.empty()) {
391 for (auto [oneBased, lb] : llvm::zip(oneBasedIndices, lbounds)) {
467 llvm::SmallVector<mlir::Value> lbounds;
469 lbounds = getExplicitLboundsFromShape(shape);
470 if (!lbounds.empty())
471 return lbounds;
605 auto lbounds = getExplicitLboundsFromShape(shape);
606 if (!lbounds.empty()) {
607 assert(lbounds.size() > dim && "bad inquiry");
608 return lbounds[dim];