Lines Matching defs:max_c
1266 int32_t min_c, int32_t max_c) {
1269 // Construct deoptimization on single or double bounds on range [base-min_c,base+max_c],
1274 // if (max_c >= a.length) deoptimize;
1276 // if (base-min_c > base+max_c) deoptimize;
1277 // if (base+max_c >= a.length ) deoptimize;
1280 HInstruction* upper = GetGraph()->GetIntConstant(max_c);
1314 int32_t max_c = value.GetConstant();
1344 max_c = std::max(max_c, other_c);
1357 if (min_c <= other_c && other_c <= max_c) {
1363 // OOB. Note that we reject cases where the distance min_c:max_c range gets close to
1368 uint32_t distance = static_cast<uint32_t>(max_c) - static_cast<uint32_t>(min_c);
1372 AddCompareWithDeoptimization(block, array_length, base, min_c, max_c);
1433 int32_t max_c = value.GetConstant();
1459 max_c = std::max(max_c, other_c);
1468 if (min_c <= other_c && other_c <= max_c) {
1475 uint32_t distance = static_cast<uint32_t>(max_c) - static_cast<uint32_t>(min_c);
1493 if (other_c == max_c) {
1507 // if (min_upper > max_upper) deoptimize; unless min_c == max_c
1510 // if (min_lower > max_lower) deoptimize; unless min_c == max_c
1520 if (min_c != max_c) {
1531 if (min_c != max_c) {