| /freebsd-13.1/contrib/kyua/integration/ |
| H A D | cmd_report_junit_test.sh | 113 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 D | cmd_report_test.sh | 246 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 D | PPMacroExpansion.cpp | 142 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 D | ste-dma40.txt | 90 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 D | RuntimeDyldELFMips.h | 24 RuntimeDyldELFMips(RuntimeDyld::MemoryManager &MM, in RuntimeDyldELFMips() argument 26 : RuntimeDyldELF(MM, Resolver) {} in RuntimeDyldELFMips()
|
| H A D | RuntimeDyldCOFFI386.h | 26 RuntimeDyldCOFFI386(RuntimeDyld::MemoryManager &MM, in RuntimeDyldCOFFI386() argument 28 : RuntimeDyldCOFF(MM, Resolver, 4, COFF::IMAGE_REL_I386_DIR32) {} in RuntimeDyldCOFFI386()
|
| H A D | RuntimeDyldCOFFX86_64.h | 57 RuntimeDyldCOFFX86_64(RuntimeDyld::MemoryManager &MM, in RuntimeDyldCOFFX86_64() argument 59 : RuntimeDyldCOFF(MM, Resolver, 8, COFF::IMAGE_REL_AMD64_ADDR64), in RuntimeDyldCOFFX86_64()
|
| H A D | RuntimeDyldMachOI386.h | 25 RuntimeDyldMachOI386(RuntimeDyld::MemoryManager &MM, in RuntimeDyldMachOI386() argument 27 : RuntimeDyldMachOCRTPBase(MM, Resolver) {} in RuntimeDyldMachOI386()
|
| H A D | RuntimeDyldMachOX86_64.h | 25 RuntimeDyldMachOX86_64(RuntimeDyld::MemoryManager &MM, in RuntimeDyldMachOX86_64() argument 27 : RuntimeDyldMachOCRTPBase(MM, Resolver) {} in RuntimeDyldMachOX86_64()
|
| H A D | RuntimeDyldCOFFThumb.h | 49 RuntimeDyldCOFFThumb(RuntimeDyld::MemoryManager &MM, in RuntimeDyldCOFFThumb() argument 51 : RuntimeDyldCOFF(MM, Resolver, 4, COFF::IMAGE_REL_ARM_ADDR32) {} in RuntimeDyldCOFFThumb()
|
| H A D | RuntimeDyldCOFFAArch64.h | 90 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 D | aes | 26 # 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 D | xray-account.cpp | 121 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 D | SectionMemoryManager.cpp | 270 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 D | CorrelatedValuePropagation.cpp | 508 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 D | IndexingAction.cpp | 247 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 D | ntpdc.texi | 61 YYYY-MM-DD HH:MM:SS.SUBSEC is the local date and time,
|
| /freebsd-13.1/contrib/ntp/sntp/ |
| H A D | sntp.texi | 61 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 D | unbound_server.key | 37 O+MM/EyUOdo3NsibB3qc/GJI6iNBYS7AljYEVo6rXo5V/MZvZUF4vClen6Obzsre
|
| /freebsd-13.1/contrib/unbound/testdata/ratelimit.tdir/ |
| H A D | unbound_server.key | 37 O+MM/EyUOdo3NsibB3qc/GJI6iNBYS7AljYEVo6rXo5V/MZvZUF4vClen6Obzsre
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/ |
| H A D | SectionMemoryManager.h | 107 SectionMemoryManager(MemoryMapper *MM = nullptr);
|
| H A D | ExecutionEngine.h | 141 std::shared_ptr<MCJITMemoryManager> MM, 578 setMemoryManager(std::unique_ptr<MCJITMemoryManager> MM);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | RuntimeDyld.cpp | 1285 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 D | RDFGraph.h | 910 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 D | MacroInfo.h | 603 for (auto *MM : getModuleMacros()) in forAllDefinitions() 604 F(MM->getMacroInfo()); in forAllDefinitions()
|