Home
last modified time | relevance | path

Searched refs:MinCount (Results 1 – 14 of 14) sorted by relevance

/src/contrib/llvm-project/llvm/include/llvm/IR/
H A DProfileSummary.h35 const uint64_t MinCount; ///< The minimum count for this percentile. member
40 : Cutoff(TheCutoff), MinCount(TheMinCount), NumCounts(TheNumCounts) {} in ProfileSummaryEntry()
/src/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingValue.c166 uint64_t MinCount = UINT64_MAX; in instrumentTargetValueImpl() local
174 if (CurVNode->Count < MinCount) { in instrumentTargetValueImpl()
175 MinCount = CurVNode->Count; in instrumentTargetValueImpl()
/src/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.h875 VariadicOperatorMatcherDescriptor(unsigned MinCount, unsigned MaxCount,
877 : MinCount(MinCount), MaxCount(MaxCount), Op(Op),
883 if (Args.size() < MinCount || MaxCount < Args.size()) {
889 << ("(" + Twine(MinCount) + ", " + MaxStr + ")") << Args.size();
927 const unsigned MinCount;
1147 template <unsigned MinCount, unsigned MaxCount>
1149 ast_matchers::internal::VariadicOperatorMatcherFunc<MinCount, MaxCount>
1153 MinCount, MaxCount, Func.Op, MatcherName);
/src/contrib/llvm-project/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp169 uint64_t HotCountThreshold = HotEntry.MinCount; in getHotCountThreshold()
179 uint64_t ColdCountThreshold = ColdEntry.MinCount; in getColdCountThreshold()
H A DSampleProfWriter.cpp818 encodeULEB128(Entry.MinCount, OS); in writeSummary()
/src/sys/dev/wdatwd/
H A Dwdatwd.c627 (int)wdat->MinCount, (int)(wdat->MinCount * wdat->TimerPeriod)); in wdatwd_probe()
629 if ((wdat->TimerPeriod < 1) || (wdat->MinCount > wdat->MaxCount)) { in wdatwd_probe()
666 sc->min = sc->wdat->MinCount; in wdatwd_attach()
/src/contrib/llvm-project/llvm/lib/IR/
H A DProfileSummary.cpp62 ConstantAsMetadata::get(ConstantInt::get(Int64Ty, Entry.MinCount)), in getDetailedSummaryMD()
262 OS << Entry.NumCounts << " blocks with count >= " << Entry.MinCount in printDetailedSummary()
/src/sys/contrib/dev/acpica/include/
H A Dactbl3.h841 UINT32 MinCount; /* Minimum counter value */ member
919 UINT16 MinCount; /* Minimum counter value supported */ member
/src/sys/contrib/dev/acpica/common/
H A Ddmtbinfo3.c741 {ACPI_DMT_UINT32, ACPI_WDAT_OFFSET (MinCount), "Min Count", 0},
777 {ACPI_DMT_UINT16, ACPI_WDDT_OFFSET (MinCount), "Min Count", 0},
/src/contrib/llvm-project/llvm/lib/Analysis/
H A DProfileSummaryInfo.cpp151 uint64_t CountThreshold = Entry.MinCount; in computeThreshold()
/src/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp1300 .MinCount; in adjustInstrProfile()
1305 .MinCount; in adjustInstrProfile()
1310 .MinCount; in adjustInstrProfile()
1317 .MinCount; in adjustInstrProfile()
3088 MinCountThreshold = SummaryEntry.MinCount; in showHotFunctionList()
/src/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProf.h1225 ER.MinBlockCount = E.MinCount; in setEntry()
/src/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h1382 template <unsigned MinCount, unsigned MaxCount>
1388 static_assert(MinCount <= sizeof...(Ms) && sizeof...(Ms) <= MaxCount,
/src/usr.sbin/acpi/acpidump/
H A Dacpi.c1164 wddt->MaxCount, wddt->MinCount, wddt->Period); in acpi_handle_wddt()