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

  /art/compiler/optimizing/
induction_var_range.cc 122 if (v.is_known && v.a_constant == 1 && v.b_constant <= 0) {
134 if (v.is_known && v.a_constant >= 1) {
140 IsInt64AndGet(v.instruction->InputAt(1), &value) && v.a_constant == value) {
145 if (v.a_constant == 1 && IsMaxAtHint(v.instruction, hint, &suitable)) {
154 return v.is_known && v.a_constant == 0;
    [all...]
induction_var_range.h 46 Value() : instruction(nullptr), a_constant(0), b_constant(0), is_known(false) {}
48 : instruction(a != 0 ? i : nullptr), a_constant(a), b_constant(b), is_known(true) {}
50 // Representation as: a_constant x instruction + b_constant.
52 int32_t a_constant; member in struct:art::InductionVarRange::Value
bounds_check_elimination.cc     [all...]
induction_var_range_test.cc 46 EXPECT_EQ(v1.a_constant, v2.a_constant);
    [all...]

Completed in 225 milliseconds