HomeSort by relevance Sort by last modified time
    Searched full:b_constant (Results 1 - 4 of 4) sorted by null

  /art/compiler/optimizing/
induction_var_range.cc 71 return InductionVarRange::Value(v.instruction->InputAt(0), 1, v.b_constant);
88 return (v.is_known && v.a_constant == 0 && min <= v.b_constant && v.b_constant <= max)
105 return IsConstantValue(v1) && IsConstantValue(v2) && v1.b_constant == v2.b_constant;
176 v1_max.b_constant > v2_min.b_constant) {
245 if (IsConstantValue(v_min) && IsConstantValue(v_max) && v_min.b_constant <= v_max.b_constant) {
246 if ((request == kExact && v_min.b_constant == v_max.b_constant) || request == kAtMost)
    [all...]
induction_var_range.h 45 Value() : instruction(nullptr), a_constant(0), b_constant(0), is_known(false) {}
47 : instruction(a != 0 ? i : nullptr), a_constant(a), b_constant(b), is_known(true) {}
49 // Representation as: a_constant x instruction + b_constant.
52 int32_t b_constant; member in struct:art::InductionVarRange::Value
induction_var_range_test.cc 47 EXPECT_EQ(v1.b_constant, v2.b_constant);
    [all...]
bounds_check_elimination.cc     [all...]

Completed in 652 milliseconds