Lines Matching defs:NeedsTripCount
187 bool NeedsTripCount(HInductionVarAnalysis::InductionInfo* info) {
188 return range_.NeedsTripCount(info);
290 EXPECT_FALSE(NeedsTripCount(nullptr));
291 EXPECT_FALSE(NeedsTripCount(CreateConst(1)));
292 EXPECT_TRUE(NeedsTripCount(CreateLinear(1, 1)));
293 EXPECT_FALSE(NeedsTripCount(CreateWrapAround(1, 2, 3)));
294 EXPECT_TRUE(NeedsTripCount(CreateWrapAround(1, CreateLinear(1, 1))));