Lines Matching defs:Count
51 bool ICallPromotionAnalysis::isPromotionProfitable(uint64_t Count,
54 return Count * 100 >= ICPRemainingPercentThreshold * RemainingCount &&
55 Count * 100 >= ICPTotalPercentThreshold * TotalCount;
69 uint64_t Count = ValueDataArray[I].Count;
70 assert(Count <= RemainingCount);
71 LLVM_DEBUG(dbgs() << " Candidate " << I << " Count=" << Count
74 if (!isPromotionProfitable(Count, TotalCount, RemainingCount)) {
78 RemainingCount -= Count;