Searched refs:Library (Results 1 - 25 of 31) sorted by relevance

12

/freebsd-current/stand/libsa/
H A Dzalloc_protos.h33 Library void *znalloc(struct MemPool *mpool, uintptr_t bytes, size_t align);
34 Library void zfree(struct MemPool *mpool, void *ptr, uintptr_t bytes);
35 Library void zextendPool(MemPool *mp, void *base, uintptr_t bytes);
36 Library void zallocstats(struct MemPool *mp);
H A Dzalloc_defs.h46 #define Library extern macro
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Passes/
H A DPassPlugin.h87 PassPlugin(const std::string &Filename, const sys::DynamicLibrary &Library) argument
88 : Filename(Filename), Library(Library), Info() {}
91 sys::DynamicLibrary Library; member in class:llvm::PassPlugin
/freebsd-current/contrib/llvm-project/llvm/lib/Passes/
H A DPassPlugin.cpp18 auto Library = local
20 if (!Library.isValid())
25 PassPlugin P{Filename, Library};
30 (intptr_t)Library.getAddressOfSymbol("llvmGetPassPluginInfo");
/freebsd-current/lib/libefivar/
H A Duefi-dplib.h27 * Taken from MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.h
46 #include <Library/DebugLib.h>
47 #include <Library/PrintLib.h>
48 #include <Library/BaseLib.h>
49 #include <Library/BaseMemoryLib.h>
50 #include <Library/MemoryAllocationLib.h>
51 #include <Library/UefiBootServicesTableLib.h>
52 #include <Library/DevicePathLib.h>
53 #include <Library/PcdLib.h>
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Object/
H A DTapiUniversal.h1 //===-- TapiUniversal.h - Text-based Dynamic Library Stub -------*- C++ -*-===//
113 struct Library { struct in class:llvm::object::TapiUniversal
119 std::vector<Library> Libraries;
/freebsd-current/contrib/llvm-project/llvm/lib/Object/
H A DTapiUniversal.cpp9 // This file defines the Text-based Dynamic Library Stub format.
37 Libraries.emplace_back(Library({Name, Arch}));
H A DCOFFImportFile.cpp185 StringRef Library; member in class:llvm::object::__anon2107::ObjectFactory
191 : NativeMachine(M), ImportName(S), Library(llvm::sys::path::stem(S)),
192 ImportDescriptorSymbolName((ImportDescriptorPrefix + Library).str()),
194 (NullThunkDataPrefix + Library + NullThunkDataSuffix).str()) {}
213 // Library Format.
H A DOffloadBinary.cpp144 Error extractFromArchive(const Archive &Library, argument
148 for (auto Child : Library.children(Err)) {
/freebsd-current/contrib/llvm-project/clang/include/clang/Basic/
H A DHLSLRuntime.h44 ENUM_COMPARE_ASSERT(Library)
H A DModule.h448 LinkLibrary(const std::string &Library, bool IsFramework) argument
449 : Library(Library), IsFramework(IsFramework) {}
455 std::string Library; member in struct:clang::LinkLibrary
H A DLangOptions.h69 Library, member in class:clang::ShaderStage
/freebsd-current/contrib/llvm-project/llvm/lib/Target/DirectX/
H A DDXILMetadata.cpp57 case Triple::Library:
101 if (ShaderKind == Triple::EnvironmentType::Library) {
136 if (IsLib && ShaderKind != Triple::EnvironmentType::Library)
231 // Library will have empty entry metadata which only store the resource table
276 case Triple::EnvironmentType::Library: {
/freebsd-current/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStubV5.cpp937 Object Library; local
941 if (!insertNonEmptyValues(Library, TBDKey::TargetInfo,
946 if (!insertNonEmptyValues(Library, TBDKey::InstallName, std::move(Name)))
951 insertNonEmptyValues(Library, TBDKey::Flags, std::move(Flags));
955 insertNonEmptyValues(Library, TBDKey::CurrentVersion, std::move(CurrentV));
959 insertNonEmptyValues(Library, TBDKey::CompatibilityVersion,
964 insertNonEmptyValues(Library, TBDKey::SwiftABI, std::move(SwiftABI));
967 insertNonEmptyValues(Library, TBDKey::RPath, std::move(RPaths));
971 insertNonEmptyValues(Library, TBDKey::ParentUmbrella, std::move(Umbrellas));
975 insertNonEmptyValues(Library, TBDKe
[all...]
H A DInterfaceFile.cpp93 void InterfaceFile::inlineLibrary(std::shared_ptr<InterfaceFile> Library, argument
115 for (auto Doc : Library->documents())
118 Library->Documents.clear();
119 AddFwk(std::move(Library));
H A DTextStub.cpp423 for (const auto &Library : File->allowableClients())
424 ArchSet.insert(Library.getArchitectures());
426 for (const auto &Library : File->reexportedLibraries())
427 ArchSet.insert(Library.getArchitectures());
440 for (const auto &Library : File->allowableClients())
441 if (Library.getArchitectures() == Architectures)
442 Section.AllowableClients.emplace_back(Library.getInstallName());
444 for (const auto &Library : File->reexportedLibraries())
445 if (Library.getArchitectures() == Architectures)
446 Section.ReexportedLibraries.emplace_back(Library
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DHLSL.cpp52 case Triple::EnvironmentType::Library: {
84 .Case("lib", Triple::EnvironmentType::Library)
96 if (Parts[2] == "x" && Kind == Triple::EnvironmentType::Library)
/freebsd-current/share/mk/
H A Dbsd.own.mk36 # LIBOWN Library owner. [${BINOWN}]
38 # LIBGRP Library group. [${BINGRP}]
40 # LIBMODE Library mode. [${NOBINMODE}]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_malloc_mac.inc66 // Library functions that need to modify the zone will set PROT_WRITE on it.
/freebsd-current/release/packages/
H A DMakefile.package117 netmap_COMMENT= Netmap Library and Utilities
118 netmap_DESC= Netmap Library and Utilities
/freebsd-current/contrib/llvm-project/llvm/include/llvm/TargetParser/
H A DTriple.h270 Library, enumerator in enum:llvm::Triple::EnvironmentType
791 Env == Triple::Library || Env == Triple::RayGeneration ||
/freebsd-current/contrib/llvm-project/llvm/include/llvm/TextAPI/
H A DInterfaceFile.h57 /// \brief MachO Dynamic Library file.
60 /// \brief MachO Dynamic Library Stub file.
433 /// \param Library Interface of reexported library.
435 void inlineLibrary(std::shared_ptr<InterfaceFile> Library,
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp293 static object::Archive &readLibrary(const Twine &Library) { argument
294 auto BufOrErr = MemoryBuffer::getFile(Library, /*IsText=*/false,
296 failIfError(BufOrErr.getError(), "could not open library " + Library);
/freebsd-current/contrib/llvm-project/llvm/lib/TargetParser/
H A DTriple.cpp317 case Library: return "library";
686 .StartsWith("library", Triple::Library)
1958 static_assert(Triple::Library - Triple::Pixel == 6,
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCGHLSLRuntime.cpp448 if (T.getEnvironment() != Triple::EnvironmentType::Library) {

Completed in 1778 milliseconds

12