Home
last modified time | relevance | path

Searched refs:CountThreshold (Results 1 – 3 of 3) sorted by relevance

/llvm-project/offload/include/Utils/
H A DExponentialBackoff.h27 const int64_t CountThreshold = 0; variable
31 ExponentialBackoff(int64_t MaxCount, int64_t CountThreshold, in ExponentialBackoff() argument
33 : MaxCount(MaxCount), CountThreshold(CountThreshold), in ExponentialBackoff()
37 assert(CountThreshold >= 0 && in ExponentialBackoff()
47 bool isAboveThreshold() const { return Count > CountThreshold; } in isAboveThreshold()
/llvm-project/llvm/lib/Analysis/
H A DProfileSummaryInfo.cpp151 uint64_t CountThreshold = Entry.MinCount; in computeThreshold() local
152 ThresholdCache[PercentileCutoff] = CountThreshold; in computeThreshold()
153 return CountThreshold; in computeThreshold()
175 auto CountThreshold = computeThreshold(PercentileCutoff); in isHotOrColdCountNthPercentile() local
177 return CountThreshold && C >= *CountThreshold; in isHotOrColdCountNthPercentile()
179 return CountThreshold && C <= *CountThreshold; in isHotOrColdCountNthPercentile()
/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonConstExtenders.cpp32 static cl::opt<unsigned> CountThreshold( variable
1922 if (Idxs.size() < CountThreshold) in replaceExtenders()