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

  /art/compiler/optimizing/
induction_var_range.h 72 bool RefineOuter(/*in-out*/ Value* min_val,
177 Value RefineOuter(Value val, bool is_min) const;
induction_var_range_test.cc 577 EXPECT_FALSE(range_.RefineOuter(&v1, &v2));
584 EXPECT_FALSE(range_.RefineOuter(&v1, &v2));
589 EXPECT_FALSE(range_.RefineOuter(&v1, &v2));
604 EXPECT_FALSE(range_.RefineOuter(&v1, &v2));
611 EXPECT_FALSE(range_.RefineOuter(&v1, &v2));
616 EXPECT_FALSE(range_.RefineOuter(&v1, &v2));
632 EXPECT_FALSE(range_.RefineOuter(&v1, &v2));
639 EXPECT_FALSE(range_.RefineOuter(&v1, &v2));
644 EXPECT_FALSE(range_.RefineOuter(&v1, &v2));
702 EXPECT_FALSE(range_.RefineOuter(&v1, &v2))
    [all...]
induction_var_range.cc 163 bool InductionVarRange::RefineOuter(/*in-out*/ Value* min_val,
166 Value v1_min = RefineOuter(*min_val, /* is_min */ true);
167 Value v2_max = RefineOuter(*max_val, /* is_min */ false);
172 Value v1_max = RefineOuter(*min_val, /* is_min */ false);
173 Value v2_min = RefineOuter(*max_val, /* is_min */ true);
254 } while (RefineOuter(&v_min, &v_max));
447 RefineOuter(&v1_min, &v1_max);
583 InductionVarRange::Value InductionVarRange::RefineOuter(Value v, bool is_min) const {
    [all...]
bounds_check_elimination.cc     [all...]

Completed in 1096 milliseconds