| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Driver/ |
| H A D | Types.def | 38 … PP_C, INVALID, "i", phases::Compile, phases::Backend, phases::Assemble… 42 … PP_CUDA, INVALID, "cui", phases::Compile, phases::Backend, phases::Assemble… 45 … PP_HIP, INVALID, "cui", phases::Compile, phases::Backend, phases::Assemble… 48 …ut", PP_ObjC, INVALID, "mi", phases::Compile, phases::Backend, phases::Assemble… 49 … PP_ObjC_Alias, INVALID, "mi", phases::Compile, phases::Backend, phases::Assemble… 51 … PP_CXX, INVALID, "ii", phases::Compile, phases::Backend, phases::Assemble… 53 …tput", PP_ObjCXX, INVALID, "mii", phases::Compile, phases::Backend, phases::Assemble… 54 … PP_ObjCXX_Alias, INVALID, "mii", phases::Compile, phases::Backend, phases::Assemble… 72 … Ada, INVALID, nullptr, phases::Compile, phases::Backend, phases::Assemble… 75 … PP_Fortran, INVALID, nullptr, phases::Compile, phases::Backend, phases::Assemble… [all …]
|
| H A D | Phases.h | 21 Backend, enumerator
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/ |
| H A D | scudo_allocator.cpp | 231 BackendT Backend; member 266 Backend.init(common_flags()->allocator_release_to_os_interval_ms); in init() 352 BackendPtr = Backend.allocatePrimary(&TSD->Cache, ClassId); in allocate() 358 BackendPtr = Backend.allocateSecondary(BackendSize, Alignment); in allocate() 575 Backend.destroyCache(&TSD->Cache); in commitBack() 581 Backend.getStats(stats); in getStats() 600 Backend.printStats(); in printStats() 672 return Instance.Backend; in getBackend()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCAssembler.h | 104 std::unique_ptr<MCAsmBackend> Backend; variable 229 MCAssembler(MCContext &Context, std::unique_ptr<MCAsmBackend> Backend, 294 MCAsmBackend *getBackendPtr() const { return Backend.get(); } in getBackendPtr() 300 MCAsmBackend &getBackend() const { return *Backend; } in getBackend()
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/sound/ |
| H A D | amlogic,axg-sound-card.txt | 24 Required TDM Backend dai-link properties: 27 Optional TDM Backend dai-link properties: 40 Backend dai-link subnodes:
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Driver/ |
| H A D | Phases.cpp | 20 case Backend: return "backend"; in getPhaseName()
|
| H A D | Types.cpp | 356 LastPhase = phases::Backend; in getCompilationPhases()
|
| H A D | Driver.cpp | 301 FinalPhase = phases::Backend; in getFinalPhase() 2809 if (CompileDeviceOnly || CurPhase == phases::Backend) { in getDeviceDependences() 2871 } else if (CurPhase > phases::Backend) { in getDeviceDependences() 2878 assert(CurPhase < phases::Backend && "Generating single CUDA " in getDeviceDependences() 2953 if (!Relocatable && CurPhase == phases::Backend && !EmitLLVM && in getDeviceDependences() 2975 C, Args, phases::Backend, CudaDeviceActions[I], in getDeviceDependences() 3982 case phases::Backend: { in ConstructPhaseAction()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/LTO/ |
| H A D | LTO.h | 280 LTO(Config Conf, ThinBackend Backend = nullptr, 342 ThinLTOState(ThinBackend Backend); 344 ThinBackend Backend; member
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/display/ |
| H A D | allwinner,sun4i-a10-display-backend.yaml | 7 title: Allwinner A10 Display Engine Backend Device Tree Bindings 31 - description: Display Backend registers 66 - description: The Backend reset line
|
| H A D | allwinner,sun4i-a10-display-engine.yaml | 27 Frontend 0 [0] ------- [0] Backend 0 [0] ------- [0] TCON 0 33 Frontend 1 [1] ------- [1] Backend 1 [1] ------- [1] TCON 1
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AVR/ |
| H A D | README.md | 7 * [Unresolved bugs](https://llvm.org/bugs/buglist.cgi?product=libraries&component=Backend%3A%20AVR&…
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | DiagnosticCategories.td | 11 class CatBackend : DiagCategory<"Backend Issue">;
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-lto2/ |
| H A D | llvm-lto2.cpp | 307 ThinBackend Backend; in run() local 309 Backend = createWriteIndexesThinBackend(/* OldPrefix */ "", in run() 315 Backend = createInProcessThinBackend( in run() 317 LTO Lto(std::move(Conf), std::move(Backend)); in run()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCObjectStreamer.cpp | 389 MCAsmBackend &Backend = Assembler.getBackend(); in emitInstructionImpl() local 390 if (!(Backend.mayNeedRelaxation(Inst, STI) || in emitInstructionImpl() 391 Backend.allowEnhancedRelaxation())) { in emitInstructionImpl() 404 while (Backend.mayNeedRelaxation(Relaxed, STI)) in emitInstructionImpl() 405 Backend.relaxInstruction(Relaxed, STI); in emitInstructionImpl()
|
| H A D | MCAssembler.cpp | 84 std::unique_ptr<MCAsmBackend> Backend, in MCAssembler() argument 87 : Context(Context), Backend(std::move(Backend)), in MCAssembler()
|
| H A D | XCOFFObjectWriter.cpp | 457 MCAsmBackend &Backend = Asm.getBackend(); in recordRelocation() local 458 bool IsPCRel = Backend.getFixupKindInfo(Fixup.getKind()).Flags & in recordRelocation()
|
| H A D | ELFObjectWriter.cpp | 1406 MCAsmBackend &Backend = Asm.getBackend(); in recordRelocation() local 1407 bool IsPCRel = Backend.getFixupKindInfo(Fixup.getKind()).Flags & in recordRelocation()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/LTO/ |
| H A D | LTO.cpp | 515 LTO::ThinLTOState::ThinLTOState(ThinBackend Backend) in ThinLTOState() argument 516 : Backend(Backend), CombinedIndex(/*HaveGVs*/ false) { in ThinLTOState() 517 if (!Backend) in ThinLTOState() 518 this->Backend = in ThinLTOState() 522 LTO::LTO(Config Conf, ThinBackend Backend, in LTO() argument 526 ThinLTO(std::move(Backend)) {} in LTO() 1516 ThinLTO.Backend(Conf, ThinLTO.CombinedIndex, ModuleToDefinedGVSummaries, in runThinLTO()
|
| /freebsd-13.1/sys/cam/ctl/ |
| H A D | README.ctl.txt | 101 LUN Backend Size (Blocks) BS Serial Number Device ID 119 LUN Backend Size (Blocks) BS Serial Number Device ID
|
| /freebsd-13.1/contrib/ntp/sntp/libevent/ |
| H A D | whatsnew-2.0.txt | 282 3. Backend-specific and performance improvements.
|
| H A D | whatsnew-2.1.txt | 528 3. Backend/OS-specific improvements
|
| /freebsd-13.1/contrib/libevent/ |
| H A D | whatsnew-2.0.txt | 282 3. Backend-specific and performance improvements.
|
| H A D | whatsnew-2.1.txt | 589 3. Backend/OS-specific improvements
|
| /freebsd-13.1/usr.sbin/services_mkdb/ |
| H A D | services | 1712 hpiod 2208/tcp #HP I/O Backend 1713 hpiod 2208/udp #HP I/O Backend
|