Lines Matching refs:Count
123 uint64_t Count = I.second.getSamples();
124 addCount(Count);
141 uint64_t CurrSum = 0, Count = 0;
153 Count = Iter->first;
155 CurrSum += (Count * Freq);
160 ProfileSummaryEntry PSE = {Cutoff, Count, CountsSeen};
226 void InstrProfSummaryBuilder::addEntryCount(uint64_t Count) {
227 assert(Count <= getInstrMaxCountValue() &&
228 "Count value should be less than the max count value.");
230 addCount(Count);
231 if (Count > MaxFunctionCount)
232 MaxFunctionCount = Count;
235 void InstrProfSummaryBuilder::addInternalCount(uint64_t Count) {
236 assert(Count <= getInstrMaxCountValue() &&
237 "Count value should be less than the max count value.");
238 addCount(Count);
239 if (Count > MaxInternalBlockCount)
240 MaxInternalBlockCount = Count;