Lines Matching refs:min_c
1171 int32_t min_c, int32_t max_c) {
1174 // Construct deoptimization on single or double bounds on range [base-min_c,base+max_c],
1181 DCHECK_GE(min_c, 0);
1184 HAdd(Primitive::kPrimInt, base, GetGraph()->GetIntConstant(min_c));
1211 int32_t min_c = base == nullptr ? 0 : value.GetConstant();
1241 min_c = std::min(min_c, other_c);
1255 if (min_c <= other_c && other_c <= max_c) {
1260 // where the distance min_c:max_c range gets close to the maximum possible array length,
1264 uint32_t distance = static_cast<uint32_t>(max_c) - static_cast<uint32_t>(min_c);
1266 (base != nullptr || min_c >= 0) && // reject certain OOB
1268 AddCompareWithDeoptimization(block, array_length, base, min_c, max_c);