Lines Matching defs:getConstantIntValue
21 std::optional<int64_t> constint = getConstantIntValue(v);
64 getConstantIntValue(tileSizeOfr).value_or(ShapedType::kDynamic);
120 std::optional<int64_t> getConstantIntValue(OpFoldResult ofr) {
139 auto cv = getConstantIntValue(ofr);
150 auto val = getConstantIntValue(ofr);
172 auto cst1 = getConstantIntValue(ofr1), cst2 = getConstantIntValue(ofr2);
274 std::optional<int64_t> lbConstant = getConstantIntValue(lb);
277 std::optional<int64_t> ubConstant = getConstantIntValue(ub);
280 std::optional<int64_t> stepConstant = getConstantIntValue(step);
308 if (onlyNonNegative && *getConstantIntValue(attr) < 0)
310 if (onlyNonZero && *getConstantIntValue(attr) == 0)