Lines Matching refs:TotalCount
230 static bool isProfitable(uint64_t Count, uint64_t TotalCount) { in isProfitable() argument
231 assert(Count <= TotalCount); in isProfitable()
234 if (Count < TotalCount * MemOPPercentThreshold / 100) in isProfitable()
256 uint64_t TotalCount; in perform() local
258 ValueDataArray.get(), NumVals, TotalCount)) in perform()
261 uint64_t ActualCount = TotalCount; in perform()
262 uint64_t SavedTotalCount = TotalCount; in perform()
281 if (TotalCount == 0) in perform()
284 TotalCount = ActualCount; in perform()
290 uint64_t RemainCount = TotalCount; in perform()
351 uint64_t SumForOpt = TotalCount - RemainCount; in perform()
355 << TotalCount << ")\n"); in perform()
453 << NV("Count", SumForOpt) << " out of " << NV("Total", TotalCount) in perform()