Lines Matching refs:Total
223 unsigned computeCoverage(unsigned Used, unsigned Total) const;
359 uint64_t Total = 0; in countBodySamples() local
361 Total += I.second.getSamples(); in countBodySamples()
367 Total += countBodySamples(CalleeSamples); in countBodySamples()
370 return Total; in countBodySamples()
379 unsigned Total) const { in computeCoverage()
380 assert(Used <= Total && in computeCoverage()
382 return Total > 0 ? Used * 100 / Total : 100; in computeCoverage()
1167 unsigned Total = CoverageTracker.countBodyRecords(Samples); in emitAnnotations() local
1168 unsigned Coverage = CoverageTracker.computeCoverage(Used, Total); in emitAnnotations()
1172 Twine(Used) + " of " + Twine(Total) + " available profile records (" + in emitAnnotations()
1180 uint64_t Total = CoverageTracker.countBodySamples(Samples); in emitAnnotations() local
1181 unsigned Coverage = CoverageTracker.computeCoverage(Used, Total); in emitAnnotations()
1185 Twine(Used) + " of " + Twine(Total) + " available profile samples (" + in emitAnnotations()