HomeSort by relevance Sort by last modified time
    Searched defs:CreateTripCount (Results 1 - 2 of 2) sorted by null

  /art/compiler/optimizing/
induction_var_analysis.h 136 InductionInfo* CreateTripCount(InductionOp op,
induction_var_range_test.cc 162 HInductionVarAnalysis::InductionInfo* CreateTripCount(int32_t tc, bool in_loop, bool safe) {
172 return iva_->CreateTripCount(op,
363 EXPECT_FALSE(IsBodyTripCount(CreateTripCount(100, true, true)));
364 EXPECT_FALSE(IsBodyTripCount(CreateTripCount(100, true, false)));
365 EXPECT_TRUE(IsBodyTripCount(CreateTripCount(100, false, true)));
366 EXPECT_TRUE(IsBodyTripCount(CreateTripCount(100, false, false)));
369 EXPECT_FALSE(IsUnsafeTripCount(CreateTripCount(100, true, true)));
370 EXPECT_TRUE(IsUnsafeTripCount(CreateTripCount(100, true, false)));
371 EXPECT_FALSE(IsUnsafeTripCount(CreateTripCount(100, false, true)));
372 EXPECT_TRUE(IsUnsafeTripCount(CreateTripCount(100, false, false)))
    [all...]

Completed in 99 milliseconds