Home
last modified time | relevance | path

Searched refs:lbounds_ (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/flang/lib/Evaluate/
Dconstant.cpp27 : shape_(shape), lbounds_(shape_.size(), 1) {} in ConstantBounds()
30 : shape_(std::move(shape)), lbounds_(shape_.size(), 1) {} in ConstantBounds()
36 lbounds_ = std::move(lb); in set_lbounds()
49 auto lb{lbounds_[dim]}; in SubscriptsToOffset()
65 auto lb{lbounds_[k]}; in IncrementSubscripts()
Dcheck-expression.cpp276 : Base{*this}, shape_{std::move(shape)}, lbounds_{std::move(lb)} {} in ScalarExpansionVisitor()
280 if (lbounds_) { in operator ()()
281 expanded.set_lbounds(std::move(*lbounds_)); in operator ()()
288 std::optional<ConstantSubscripts> lbounds_; member in Fortran::evaluate::ScalarExpansionVisitor
/external/llvm-project/flang/include/flang/Evaluate/
Dconstant.h66 const ConstantSubscripts &lbounds() const { return lbounds_; } in lbounds()
84 ConstantSubscripts lbounds_; variable
Dtools.h871 : extents_{std::move(extents)}, lbounds_{std::move(lbounds)} {} in ScalarConstantExpander()
874 : extents_{std::move(extents)}, lbounds_{std::move(lbounds)} {} in ScalarConstantExpander()
881 if (lbounds_) { in Expand()
882 expanded.set_lbounds(std::move(*lbounds_)); in Expand()
896 std::optional<ConstantSubscripts> lbounds_; variable