Home
last modified time | relevance | path

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

12345

/freebsd/contrib/kyua/integration/
H A Dcmd_report_junit_test.sh115 Start time: YYYY-MM-DDTHH:MM:SS.ssssssZ
116 End time: YYYY-MM-DDTHH:MM:SS.ssssssZ
155 Start time: YYYY-MM-DDTHH:MM:SS.ssssssZ
156 End time: YYYY-MM-DDTHH:MM:SS.ssssssZ
233 Start time: YYYY-MM-DDTHH:MM:SS.ssssssZ
234 End time: YYYY-MM-DDTHH:MM:SS.ssssssZ
273 Start time: YYYY-MM-DDTHH:MM:SS.ssssssZ
274 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
276 Start time: YYYY-MM-DDTHH:MM:SS.ssssssZ
277 End time: YYYY-MM-DDTHH:MM:SS.ssssssZ
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCScheduleP10.td296 // A MM pipeline may take 10 cycles to complete.
352 // Save 1 cycles if pipeline BF reads the data from pipelines DX, MU, vMU, CY, DF, MM.
359 // Save 1 cycles if pipeline CY reads the data from pipelines DX, MU, vMU, BF, DF, MM.
366 // Save 1 cycles if pipeline MM reads the data from pipelines DX, MU, vMU, BF, CY, DF.
367 // Save 6 cycles if pipeline MM reads the data from pipelines MM.
376 // Save 1 cycles if pipeline DF reads the data from pipelines DX, MU, vMU, BF, CY, DF, MM.
379 // Save 1 cycles if pipeline DV reads the data from pipelines DX, MU, vMU, BF, CY, DF, MM.
382 // Save 1 cycles if pipeline DX reads the data from pipelines DX, MU, vMU, BF, CY, DF, MM.
403 // Save 1 cycles if pipeline SX reads the data from pipelines ST, SX, FX, F2, PM, MM
[all...]
/freebsd/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/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DCorrelatedValuePropagation.cpp571 static bool processMinMaxIntrinsic(MinMaxIntrinsic *MM, LazyValueInfo *LVI) { in processMinMaxIntrinsic() argument
572 CmpInst::Predicate Pred = CmpInst::getNonStrictPredicate(MM->getPredicate()); in processMinMaxIntrinsic()
573 ConstantRange LHS_CR = LVI->getConstantRangeAtUse(MM->getOperandUse(0), in processMinMaxIntrinsic()
575 ConstantRange RHS_CR = LVI->getConstantRangeAtUse(MM->getOperandUse(1), in processMinMaxIntrinsic()
579 MM->replaceAllUsesWith(MM->getLHS()); in processMinMaxIntrinsic()
580 MM->eraseFromParent(); in processMinMaxIntrinsic()
585 MM->replaceAllUsesWith(MM->getRHS()); in processMinMaxIntrinsic()
586 MM->eraseFromParent(); in processMinMaxIntrinsic()
590 if (MM->isSigned() && in processMinMaxIntrinsic()
594 IRBuilder<> B(MM); in processMinMaxIntrinsic()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPPMacroExpansion.cpp140 if (auto *MM = ModuleMacros.FindNodeOrInsertPos(ID, InsertPos)) { in addModuleMacro() local
142 return MM; in addModuleMacro()
145 auto *MM = ModuleMacro::create(*this, Mod, II, Macro, Overrides); in addModuleMacro() local
146 ModuleMacros.InsertNode(MM, InsertPos); in addModuleMacro()
159 [](ModuleMacro *MM) { return MM->NumOverriddenBy != 0; }); in addModuleMacro() argument
163 LeafMacros.push_back(MM); in addModuleMacro()
168 return MM; in addModuleMacro()
209 auto *MM = Worklist.pop_back_val(); in updateModuleMacroInfo() local
210 if (CurSubmoduleState->VisibleModules.isVisible(MM->getOwningModule())) { in updateModuleMacroInfo()
213 if (MM->getMacroInfo()) in updateModuleMacroInfo()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-account.cpp123 template <class T, class U> void setMinMax(std::pair<T, T> &MM, U &&V) { in setMinMax() argument
124 if (MM.first == 0 || MM.second == 0) in setMinMax()
125 MM = std::make_pair(std::forward<U>(V), std::forward<U>(V)); in setMinMax()
127 MM = std::make_pair(std::min(MM.first, V), std::max(MM.second, V)); in setMinMax()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldELFMips.h23 RuntimeDyldELFMips(RuntimeDyld::MemoryManager &MM, in RuntimeDyldELFMips() argument
25 : 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 DRuntimeDyldMachOX86_64.h24 RuntimeDyldMachOX86_64(RuntimeDyld::MemoryManager &MM, in RuntimeDyldMachOX86_64() argument
26 : RuntimeDyldMachOCRTPBase(MM, Resolver) {} in RuntimeDyldMachOX86_64()
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.h24 RuntimeDyldMachOI386(RuntimeDyld::MemoryManager &MM, in RuntimeDyldMachOI386() argument
26 : RuntimeDyldMachOCRTPBase(MM, Resolver) {} in RuntimeDyldMachOI386()
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.h91 RuntimeDyldCOFFAArch64(RuntimeDyld::MemoryManager &MM, in RuntimeDyldCOFFAArch64() argument
93 : RuntimeDyldCOFF(MM, Resolver, 8, COFF::IMAGE_REL_ARM64_ADDR64), in RuntimeDyldCOFFAArch64()
/freebsd/contrib/file/magic/Magdir/
H A Daes26 # tag CREATED_DATE like YYYY-MM-DD
27 # tag CREATED_TIME like HH:MM:SS
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/X86/
H A DABIX86.cpp55 MM, enumerator
176 { BaseRegToRegsMap::value_type("st" #n, {{MM, "mm" #n, std::nullopt}}) }
267 addPartialRegisters(regs, subreg_by_kind[MM], 10, eEncodingUint, eFormatHex, in AugmentRegisterInfo()
/freebsd/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/contrib/ntp/sntp/
H A Dsntp.texi61 YYYY-MM-DD HH:MM:SS.SUBSEC is the local date and time,
/freebsd/contrib/ntp/ntpdc/
H A Dntpdc.texi61 YYYY-MM-DD HH:MM:SS.SUBSEC is the local date and time,
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DSectionMemoryManager.h107 SectionMemoryManager(MemoryMapper *MM = nullptr);
H A DExecutionEngine.h140 std::shared_ptr<MCJITMemoryManager> MM,
577 setMemoryManager(std::unique_ptr<MCJITMemoryManager> MM);
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp1311 Triple::ArchType Arch, RuntimeDyld::MemoryManager &MM, in createRuntimeDyldCOFF() argument
1315 RuntimeDyldCOFF::create(Arch, MM, Resolver); in createRuntimeDyldCOFF()
1322 createRuntimeDyldELF(Triple::ArchType Arch, RuntimeDyld::MemoryManager &MM, in createRuntimeDyldELF() argument
1326 RuntimeDyldELF::create(Arch, MM, Resolver); in createRuntimeDyldELF()
1334 Triple::ArchType Arch, RuntimeDyld::MemoryManager &MM, in createRuntimeDyldMachO() argument
1339 RuntimeDyldMachO::create(Arch, MM, Resolver); in createRuntimeDyldMachO()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRDFGraph.h947 NodeList MM; in members_if() local
950 return MM; in members_if()
954 MM.push_back(M); in members_if()
957 return MM; in members_if()
/freebsd/usr.sbin/bsdconfig/mouse/include/
H A Dmessages.subr56 msg_mm_series="MM Series"
57 msg_mm_series_desc="MM Series protocol (serial)"
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DExecutionEngine.h187 void LLVMDisposeMCJITMemoryManager(LLVMMCJITMemoryManagerRef MM);

12345