Home
last modified time | relevance | path

Searched refs:MIBs (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h404 std::vector<MIBInfo> MIBs;
410 AllocInfo(std::vector<MIBInfo> MIBs) : MIBs(std::move(MIBs)) {
413 AllocInfo(SmallVector<uint8_t> Versions, std::vector<MIBInfo> MIBs)
414 : Versions(std::move(Versions)), MIBs(std::move(MIBs)) {}
427 for (auto &M : AE.MIBs) {
/freebsd/contrib/ntp/ntpsnmpd/
H A DREADME13 (which should output a lot of data values for the supported built-in MIBs of net-snmp)
/freebsd/contrib/bsnmp/snmp_mibII/
H A DBEGEMOT-IP-MIB.txt56 "The MIB for IP stuff that is not in the official IP MIBs."
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp521 std::vector<MIBInfo> MIBs; in computeFunctionSummary() local
540 MIBs.push_back( in computeFunctionSummary()
548 Allocs.push_back(AllocInfo(std::move(MIBs))); in computeFunctionSummary()
550 assert(Allocs.back().MIBs.size() == TotalSizes.size()); in computeFunctionSummary()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DMemProfContextDisambiguation.cpp1757 if (AN.MIBs.empty()) in IndexCallsiteContextGraph()
1768 AN.TotalSizes.size() == AN.MIBs.size()); in IndexCallsiteContextGraph()
1770 for (auto &MIB : AN.MIBs) { in IndexCallsiteContextGraph()
3689 auto MIBIter = AllocNode.MIBs.begin(); in applyImport()
3691 assert(MIBIter != AllocNode.MIBs.end()); in applyImport()
/freebsd/contrib/wpa/wpa_supplicant/doc/docbook/
H A Dwpa_cli.sgml41 security mode, dot11 and dot1x MIBs, etc. In addition, it can
/freebsd/contrib/llvm-project/llvm/include/llvm/AsmParser/
H A DLLParser.h439 bool parseMemProfs(std::vector<MIBInfo> &MIBs);
/freebsd/share/mk/
H A Dbsd.README490 execute smilint on the MIBs defined by BMIBS.
530 SMIPATH A colon-separated directory path where MIBs definitions
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp7995 std::vector<MIBInfo> MIBs; in parseEntireSummary() local
8012 MIBs.push_back(MIBInfo(AllocType, std::move(StackIdList))); in parseEntireSummary()
8022 PendingAllocs.push_back(AllocInfo(std::move(MIBs))); in parseEntireSummary()
8024 assert(PendingAllocs.back().MIBs.size() == TotalSizes.size()); in parseEntireSummary()
8032 std::vector<MIBInfo> MIBs; in parseEntireSummary() local
8047 MIBs.push_back(MIBInfo(AllocType, std::move(StackIdList))); in parseEntireSummary()
8063 AllocInfo(std::move(Versions), std::move(MIBs))); in parseEntireSummary()
8065 assert(PendingAllocs.back().MIBs.size() == TotalSizes.size()); in parseEntireSummary()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp518 for (auto &MIB : AI.MIBs) in IndexBitcodeWriter()
4194 Record.push_back(AI.MIBs.size()); in writeFunctionHeapProfileRecords()
4197 for (auto &MIB : AI.MIBs) { in writeFunctionHeapProfileRecords()
4207 assert(AI.TotalSizes.empty() || AI.TotalSizes.size() == AI.MIBs.size()); in writeFunctionHeapProfileRecords()
/freebsd/contrib/tcpdump/
H A Dconfigure.in102 [ --with-smi link with libsmi (allows to load MIBs on the fly to decode SNMP packets.…
H A Dconfigure.ac87 …[link with libsmi (allows to load MIBs on the fly to decode SNMP packets) [default=yes, if availab…
H A DCHANGES1328 - If compiled with libsmi, tcpdump can load MIBs on the fly to decode
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp10464 std::vector<MIBInfo> MIBs; in parseOptionalAllocs() local
10465 if (parseMemProfs(MIBs)) in parseOptionalAllocs()
10468 Allocs.push_back({Versions, MIBs}); in parseOptionalAllocs()
10485 bool LLParser::parseMemProfs(std::vector<MIBInfo> &MIBs) { in parseMemProfs() argument
10521 MIBs.push_back({(AllocationType)AllocType, StackIdIndices}); in parseMemProfs()
/freebsd/contrib/wpa/wpa_supplicant/
H A DREADME689 mode, dot11 and dot1x MIBs, etc. In addition, it can configure some
/freebsd/contrib/wpa/hostapd/
H A DChangeLog1263 * started adding dot11, dot1x, radius MIBs ('hostapd_cli mib',
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DAsmWriter.cpp3401 for (auto &MIB : AI.MIBs) { in printFunctionSummary()