Home
last modified time | relevance | path

Searched refs:MM (Results 1 – 25 of 94) sorted by relevance

1234

/freebsd-13.1/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:SS.ssssssZ
228 End time: YYYY-MM-DDTHH:MM:SS.ssssssZ
265 Start time: YYYY-MM-DDTHH:MM:SS.ssssssZ
266 End time: YYYY-MM-DDTHH:MM:SS.ssssssZ
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.1/contrib/llvm-project/clang/lib/Lex/
H A DPPMacroExpansion.cpp142 return MM; in addModuleMacro()
166 LeafMacros.push_back(MM); in addModuleMacro()
171 return MM; in addModuleMacro()
212 auto *MM = Worklist.pop_back_val(); in updateModuleMacroInfo() local
216 if (MM->getMacroInfo()) in updateModuleMacroInfo()
219 for (auto *O : MM->overrides()) in updateModuleMacroInfo()
291 Active.insert(MM); in dumpMacroInfo()
298 if (!MM->getMacroInfo()) in dumpMacroInfo()
301 if (Active.count(MM)) in dumpMacroInfo()
306 else if (MM->getMacroInfo()) in dumpMacroInfo()
[all …]
/freebsd-13.1/sys/contrib/device-tree/Bindings/dma/
H A Dste-dma40.txt90 28: SD/MM controller 2
91 29: SD/MM controller 0
94 32: SD/MM controller 1
103 41: SD/MM controller 3
104 42: SD/MM controller 4
105 43: SD/MM controller 5
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldELFMips.h24 RuntimeDyldELFMips(RuntimeDyld::MemoryManager &MM, in RuntimeDyldELFMips() argument
26 : RuntimeDyldELF(MM, Resolver) {} in RuntimeDyldELFMips()
H A DRuntimeDyldCOFFI386.h26 RuntimeDyldCOFFI386(RuntimeDyld::MemoryManager &MM, in RuntimeDyldCOFFI386() argument
28 : RuntimeDyldCOFF(MM, Resolver, 4, COFF::IMAGE_REL_I386_DIR32) {} in RuntimeDyldCOFFI386()
H A DRuntimeDyldCOFFX86_64.h57 RuntimeDyldCOFFX86_64(RuntimeDyld::MemoryManager &MM, in RuntimeDyldCOFFX86_64() argument
59 : RuntimeDyldCOFF(MM, Resolver, 8, COFF::IMAGE_REL_AMD64_ADDR64), in RuntimeDyldCOFFX86_64()
H A DRuntimeDyldMachOI386.h25 RuntimeDyldMachOI386(RuntimeDyld::MemoryManager &MM, in RuntimeDyldMachOI386() argument
27 : RuntimeDyldMachOCRTPBase(MM, Resolver) {} in RuntimeDyldMachOI386()
H A DRuntimeDyldMachOX86_64.h25 RuntimeDyldMachOX86_64(RuntimeDyld::MemoryManager &MM, in RuntimeDyldMachOX86_64() argument
27 : RuntimeDyldMachOCRTPBase(MM, Resolver) {} in RuntimeDyldMachOX86_64()
H A DRuntimeDyldCOFFThumb.h49 RuntimeDyldCOFFThumb(RuntimeDyld::MemoryManager &MM, in RuntimeDyldCOFFThumb() argument
51 : RuntimeDyldCOFF(MM, Resolver, 4, COFF::IMAGE_REL_ARM_ADDR32) {} in RuntimeDyldCOFFThumb()
H A DRuntimeDyldCOFFAArch64.h90 RuntimeDyldCOFFAArch64(RuntimeDyld::MemoryManager &MM, in RuntimeDyldCOFFAArch64() argument
92 : RuntimeDyldCOFF(MM, Resolver, 8, COFF::IMAGE_REL_ARM64_ADDR64), in RuntimeDyldCOFFAArch64()
/freebsd-13.1/contrib/file/magic/Magdir/
H A Daes26 # tag CREATED_DATE like YYYY-MM-DD
27 # tag CREATED_TIME like HH:MM:SS
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-account.cpp121 template <class T, class U> void setMinMax(std::pair<T, T> &MM, U &&V) { in setMinMax() argument
122 if (MM.first == 0 || MM.second == 0) in setMinMax()
123 MM = std::make_pair(std::forward<U>(V), std::forward<U>(V)); in setMinMax()
125 MM = std::make_pair(std::min(MM.first, V), std::max(MM.second, V)); in setMinMax()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DSectionMemoryManager.cpp270 SectionMemoryManager::SectionMemoryManager(MemoryMapper *MM) in SectionMemoryManager() argument
271 : MMapper(MM ? *MM : DefaultMMapperInstance) {} in SectionMemoryManager()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DCorrelatedValuePropagation.cpp508 static bool processMinMaxIntrinsic(MinMaxIntrinsic *MM, LazyValueInfo *LVI) { in processMinMaxIntrinsic() argument
509 CmpInst::Predicate Pred = CmpInst::getNonStrictPredicate(MM->getPredicate()); in processMinMaxIntrinsic()
511 Pred, MM->getLHS(), MM->getRHS(), MM, /*UseBlockValue=*/true); in processMinMaxIntrinsic()
516 MM->replaceAllUsesWith(MM->getOperand(!Result)); in processMinMaxIntrinsic()
517 MM->eraseFromParent(); in processMinMaxIntrinsic()
575 if (auto *MM = dyn_cast<MinMaxIntrinsic>(&CB)) { in processCallSite() local
576 return processMinMaxIntrinsic(MM, LVI); in processCallSite()
/freebsd-13.1/contrib/llvm-project/clang/lib/Index/
H A DIndexingAction.cpp247 for (auto *MM : PP.getLeafModuleMacros(M.first)) { in indexPreprocessorModuleMacros() local
248 auto *OwningMod = MM->getOwningModule(); in indexPreprocessorModuleMacros()
250 if (auto *MI = MM->getMacroInfo()) { in indexPreprocessorModuleMacros()
/freebsd-13.1/contrib/ntp/ntpdc/
H A Dntpdc.texi61 YYYY-MM-DD HH:MM:SS.SUBSEC is the local date and time,
/freebsd-13.1/contrib/ntp/sntp/
H A Dsntp.texi61 YYYY-MM-DD HH:MM:SS.SUBSEC is the local date and time,
/freebsd-13.1/contrib/unbound/testdata/http_user_agent.tdir/
H A Dunbound_server.key37 O+MM/EyUOdo3NsibB3qc/GJI6iNBYS7AljYEVo6rXo5V/MZvZUF4vClen6Obzsre
/freebsd-13.1/contrib/unbound/testdata/ratelimit.tdir/
H A Dunbound_server.key37 O+MM/EyUOdo3NsibB3qc/GJI6iNBYS7AljYEVo6rXo5V/MZvZUF4vClen6Obzsre
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DSectionMemoryManager.h107 SectionMemoryManager(MemoryMapper *MM = nullptr);
H A DExecutionEngine.h141 std::shared_ptr<MCJITMemoryManager> MM,
578 setMemoryManager(std::unique_ptr<MCJITMemoryManager> MM);
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp1285 Triple::ArchType Arch, RuntimeDyld::MemoryManager &MM, in createRuntimeDyldCOFF() argument
1289 RuntimeDyldCOFF::create(Arch, MM, Resolver); in createRuntimeDyldCOFF()
1296 createRuntimeDyldELF(Triple::ArchType Arch, RuntimeDyld::MemoryManager &MM, in createRuntimeDyldELF() argument
1300 RuntimeDyldELF::create(Arch, MM, Resolver); in createRuntimeDyldELF()
1308 Triple::ArchType Arch, RuntimeDyld::MemoryManager &MM, in createRuntimeDyldMachO() argument
1313 RuntimeDyldMachO::create(Arch, MM, Resolver); in createRuntimeDyldMachO()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRDFGraph.h910 NodeList MM; in members_if() local
913 return MM; in members_if()
917 MM.push_back(M); in members_if()
920 return MM; in members_if()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Lex/
H A DMacroInfo.h603 for (auto *MM : getModuleMacros()) in forAllDefinitions()
604 F(MM->getMacroInfo()); in forAllDefinitions()

1234