Searched refs:Cutoffs (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/ProfileData/
H A DProfileCommon.h56 ProfileSummaryBuilder(std::vector<uint32_t> Cutoffs) argument
57 : DetailedSummaryCutoffs(std::move(Cutoffs)), TotalCount(0), MaxCount(0),
76 InstrProfSummaryBuilder(std::vector<uint32_t> Cutoffs) argument
77 : ProfileSummaryBuilder(std::move(Cutoffs)), MaxInternalBlockCount(0) {}
86 SampleProfileSummaryBuilder(std::vector<uint32_t> Cutoffs) argument
87 : ProfileSummaryBuilder(std::move(Cutoffs)) {}
/external/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp332 std::vector<uint32_t> Cutoffs = std::move(DetailedSummaryCutoffs); local
333 if (ShowDetailedSummary && Cutoffs.empty()) {
334 Cutoffs = {800000, 900000, 950000, 990000, 999000, 999900, 999990};
336 InstrProfSummaryBuilder Builder(std::move(Cutoffs));
510 std::vector<uint32_t> Cutoffs(DetailedSummaryCutoffs.begin(),

Completed in 183 milliseconds