Searched refs:MM (Results 1 - 25 of 32) sorted by relevance

12

/freebsd-13-stable/contrib/kyua/integration/
H A Dcmd_report_junit_test.sh113 Start time: YYYY-MM-DDTHH:MM:SS.ssssssZ
114 End time: YYYY-MM-DDTHH:MM:SS.ssssssZ
151 Start time: YYYY-MM-DDTHH:MM:SS.ssssssZ
152 End time: YYYY-MM-DDTHH:MM:SS.ssssssZ
227 Start time: YYYY-MM-DDTHH:MM
[all...]
H A Dcmd_report_test.sh246 Start time: YYYY-MM-DDTHH:MM:SS.ssssssZ
247 End time: YYYY-MM-DDTHH:MM:SS.ssssssZ
274 Start time: YYYY-MM-DDTHH:MM:SS.ssssssZ
275 End time: YYYY-MM-DDTHH:MM:SS.ssssssZ
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldELFMips.h24 RuntimeDyldELFMips(RuntimeDyld::MemoryManager &MM, argument
26 : RuntimeDyldELF(MM, Resolver) {}
H A DRuntimeDyldCOFFI386.h26 RuntimeDyldCOFFI386(RuntimeDyld::MemoryManager &MM, argument
28 : RuntimeDyldCOFF(MM, Resolver, 4, COFF::IMAGE_REL_I386_DIR32) {}
H A DRuntimeDyldCOFFX86_64.h57 RuntimeDyldCOFFX86_64(RuntimeDyld::MemoryManager &MM, argument
59 : RuntimeDyldCOFF(MM, Resolver, 8, COFF::IMAGE_REL_AMD64_ADDR64),
H A DRuntimeDyldMachOX86_64.h25 RuntimeDyldMachOX86_64(RuntimeDyld::MemoryManager &MM, argument
27 : RuntimeDyldMachOCRTPBase(MM, Resolver) {}
H A DRuntimeDyldCOFFThumb.h49 RuntimeDyldCOFFThumb(RuntimeDyld::MemoryManager &MM, argument
51 : RuntimeDyldCOFF(MM, Resolver, 4, COFF::IMAGE_REL_ARM_ADDR32) {}
H A DRuntimeDyldMachOI386.h25 RuntimeDyldMachOI386(RuntimeDyld::MemoryManager &MM, argument
27 : RuntimeDyldMachOCRTPBase(MM, Resolver) {}
H A DRuntimeDyldCOFFAArch64.h90 RuntimeDyldCOFFAArch64(RuntimeDyld::MemoryManager &MM, argument
92 : RuntimeDyldCOFF(MM, Resolver, 8, COFF::IMAGE_REL_ARM64_ADDR64),
H A DRuntimeDyldMachOARM.h28 RuntimeDyldMachOARM(RuntimeDyld::MemoryManager &MM, argument
30 : RuntimeDyldMachOCRTPBase(MM, Resolver) {}
H A DRuntimeDyldMachOAArch64.h25 RuntimeDyldMachOAArch64(RuntimeDyld::MemoryManager &MM, argument
27 : RuntimeDyldMachOCRTPBase(MM, Resolver) {}
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DPPMacroExpansion.cpp139 if (auto *MM = ModuleMacros.FindNodeOrInsertPos(ID, InsertPos)) {
141 return MM;
144 auto *MM = ModuleMacro::create(*this, Mod, II, Macro, Overrides); local
145 ModuleMacros.InsertNode(MM, InsertPos);
158 [](ModuleMacro *MM) {
159 return MM->NumOverriddenBy != 0;
165 LeafMacros.push_back(MM);
170 return MM;
210 auto *MM = Worklist.pop_back_val(); local
211 if (CurSubmoduleState->VisibleModules.isVisible(MM
293 auto *MM = Worklist.pop_back_val(); local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DSectionMemoryManager.h104 /// Creates a SectionMemoryManager instance with \p MM as the associated
105 /// memory mapper. If \p MM is nullptr then a default memory mapper is used
107 SectionMemoryManager(MemoryMapper *MM = nullptr);
H A DExecutionEngine.h141 std::shared_ptr<MCJITMemoryManager> MM,
146 std::string *ErrorStr, std::shared_ptr<MCJITMemoryManager> MM,
584 setMemoryManager(std::unique_ptr<MCJITMemoryManager> MM);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DSectionMemoryManager.cpp264 SectionMemoryManager::SectionMemoryManager(MemoryMapper *MM) argument
265 : MMapper(MM ? *MM : DefaultMMapperInstance) {}
H A DExecutionEngineBindings.cpp422 void LLVMDisposeMCJITMemoryManager(LLVMMCJITMemoryManagerRef MM) { argument
423 delete unwrap(MM);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-account.cpp118 template <class T, class U> void setMinMax(std::pair<T, T> &MM, U &&V) { argument
119 if (MM.first == 0 || MM.second == 0)
120 MM = std::make_pair(std::forward<U>(V), std::forward<U>(V));
122 MM = std::make_pair(std::min(MM.first, V), std::max(MM.second, V));
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm-c/
H A DExecutionEngine.h187 void LLVMDisposeMCJITMemoryManager(LLVMMCJITMemoryManagerRef MM);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp1291 Triple::ArchType Arch, RuntimeDyld::MemoryManager &MM,
1295 RuntimeDyldCOFF::create(Arch, MM, Resolver);
1302 createRuntimeDyldELF(Triple::ArchType Arch, RuntimeDyld::MemoryManager &MM, argument
1306 RuntimeDyldELF::create(Arch, MM, Resolver);
1314 Triple::ArchType Arch, RuntimeDyld::MemoryManager &MM,
1319 RuntimeDyldMachO::create(Arch, MM, Resolver);
1290 createRuntimeDyldCOFF( Triple::ArchType Arch, RuntimeDyld::MemoryManager &MM, JITSymbolResolver &Resolver, bool ProcessAllSections, RuntimeDyld::NotifyStubEmittedFunction NotifyStubEmitted) argument
1313 createRuntimeDyldMachO( Triple::ArchType Arch, RuntimeDyld::MemoryManager &MM, JITSymbolResolver &Resolver, bool ProcessAllSections, RuntimeDyld::NotifyStubEmittedFunction NotifyStubEmitted) argument
/freebsd-13-stable/contrib/libpcap/msdos/
H A Dmakefile.dj124 $(CC) -MM $(CFLAGS) $(SOURCES) | $(REPLACE) > .depend.dj
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DMacroInfo.h603 for (auto *MM : getModuleMacros())
604 F(MM->getMacroInfo());
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRDFGraph.h914 NodeList MM; local
917 return MM;
921 MM.push_back(M);
924 return MM;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/
H A DFrontendAction.cpp600 auto &MM = ASTReader->getModuleManager(); local
601 auto &PrimaryModule = MM.getPrimaryModule();
603 for (serialization::ModuleFile &MF : MM)
H A DCompilerInstance.cpp1570 ModuleMap &MM = CI.getPreprocessor().getHeaderSearchInfo().getModuleMap(); local
1572 MM.cacheModuleLoad(*II, MM.findModule(II->getName()));
1877 ModuleMap &MM = getPreprocessor().getHeaderSearchInfo().getModuleMap(); local
1878 if (auto MaybeModule = MM.getCachedModuleLoad(*Path[0].first)) {
1894 MM.cacheModuleLoad(*Path[0].first, Module);
1904 MM.cacheModuleLoad(*Path[0].first, Module);
/freebsd-13-stable/contrib/lua/src/
H A DMakefile76 @$(CC) $(CFLAGS) -MM l*.c

Completed in 320 milliseconds

12