Lines Matching refs:PercentileCutoff
141 ProfileSummaryInfo::computeThreshold(int PercentileCutoff) const {
144 auto iter = ThresholdCache.find(PercentileCutoff);
150 PercentileCutoff);
152 ThresholdCache[PercentileCutoff] = CountThreshold;
173 bool ProfileSummaryInfo::isHotOrColdCountNthPercentile(int PercentileCutoff,
175 auto CountThreshold = computeThreshold(PercentileCutoff);
182 bool ProfileSummaryInfo::isHotCountNthPercentile(int PercentileCutoff,
184 return isHotOrColdCountNthPercentile<true>(PercentileCutoff, C);
187 bool ProfileSummaryInfo::isColdCountNthPercentile(int PercentileCutoff,
189 return isHotOrColdCountNthPercentile<false>(PercentileCutoff, C);