Home
last modified time | relevance | path

Searched refs:a_constant (Results 1 – 3 of 3) sorted by relevance

/art/compiler/optimizing/
Dinduction_var_range.h46 Value() : instruction(nullptr), a_constant(0), b_constant(0), is_known(false) {} in Value()
48 : instruction(a != 0 ? i : nullptr), a_constant(a), b_constant(b), is_known(true) {} in Value()
52 int32_t a_constant; member
Dbounds_check_elimination.cc1396 if (v1.is_known && (v1.a_constant == 0 || v1.a_constant == 1) && in InductionRangeFitsIn()
1397 v2.is_known && (v2.a_constant == 0 || v2.a_constant == 1)) { in InductionRangeFitsIn()
1398 DCHECK(v1.a_constant == 1 || v1.instruction == nullptr); in InductionRangeFitsIn()
1399 DCHECK(v2.a_constant == 1 || v2.instruction == nullptr); in InductionRangeFitsIn()
Dinduction_var_range_test.cc45 EXPECT_EQ(v1.a_constant, v2.a_constant); in ExpectEqual()