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

  /art/compiler/optimizing/
induction_var_analysis.cc 730 return IsAtMost(lower_expr, &lower_value)
734 return IsAtMost(lower_expr, &lower_value)
739 && IsAtMost(upper_expr, &upper_value)
743 && IsAtMost(upper_expr, &upper_value)
762 (IsAtMost(upper_expr, &value) && value <= (max - stride_value + 1));
764 return (IsAtMost(upper_expr, &value) && value <= (max - stride_value));
    [all...]
induction_var_analysis.h 210 bool IsAtMost(InductionInfo* info, /*out*/ int64_t* value);
induction_var_range_test.cc 225 bool IsAtMost(HInductionVarAnalysis::InductionInfo* info, int64_t* value) {
266 EXPECT_TRUE(IsAtMost(CreateConst(12345), &value));
273 EXPECT_TRUE(IsAtMost(CreateRange(111, 111), &value));
279 EXPECT_TRUE(IsAtMost(CreateRange(11, 22), &value));
285 EXPECT_FALSE(IsAtMost(CreateFetch(x_), &value));
    [all...]

Completed in 158 milliseconds