Home
last modified time | relevance | path

Searched refs:Library (Results 1 – 25 of 184) sorted by relevance

12345678

/freebsd/contrib/mandoc/
H A Dlib.in27 LINE("lib80211", "802.11 Wireless Network Management Library (lib80211, \\-l80211)")
28 LINE("libalias", "Packet Aliasing Library (libalias, \\-lalias)")
29 LINE("libarchive", "Streaming Archive Library (libarchive, \\-larchive)")
30 LINE("libarm", "ARM Architecture Library (libarm, \\-larm)")
31 LINE("libarm32", "ARM32 Architecture Library (libarm32, \\-larm32)")
32 LINE("libbe", "Boot Environment Library (libbe, \\-lbe)")
33 LINE("libbluetooth", "Bluetooth Library (libbluetooth, \\-lbluetooth)")
35 LINE("libbsm", "Basic Security Module Library (libbsm, \\-lbsm)")
36 LINE("libc", "Standard C\\~Library (libc, \\-lc)")
37 LINE("libc_r", "Reentrant C\\~Library (libc_r, \\-lc_r)")
[all …]
H A Dmsec.in27 LINE("3", "FreeBSD Library Functions Manual")
28 LINE("3lua", "Lua Library Functions Manual")
/freebsd/contrib/file/magic/Magdir/
H A Dkicad29 # KiCad Symbol Library
31 >17 byte 0x20 KiCad Symbol Library
37 # KiCad Symbol Library (Legacy)
39 >16 byte 0x20 KiCad Symbol Library (Legacy)
45 # KiCad Symbol Library Documentation (Legacy)
47 >15 byte 0x20 KiCad Symbol Library Documentation (Legacy)
75 # KiCad Symbol Library Table
77 >14 byte 0xA KiCad Symbol Library Table
78 >14 byte 0xD KiCad Symbol Library Table
79 >14 byte 0x20 KiCad Symbol Library Table
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/InstallAPI/
H A DDirectoryScanner.h38 std::vector<Library> takeLibraries() { return std::move(Libraries); }; in takeLibraries()
43 static HeaderSeq getHeaders(ArrayRef<Library> Libraries);
53 Library &getOrCreateLibrary(StringRef Path, std::vector<Library> &Libs) const;
57 std::vector<Library> &Libs) const;
60 std::vector<Library> &Libs) const;
63 llvm::Error scanFrameworkDirectory(StringRef Path, Library &Framework) const;
66 llvm::Error scanHeaders(StringRef Path, Library &Lib, HeaderType Type,
72 Library &Lib) const;
76 std::vector<Library> Libraries;
H A DLibrary.h21 class Library {
23 Library(StringRef Directory) : BaseDirectory(Directory) {} in Library() function
56 std::vector<Library> SubFrameworks;
57 std::vector<Library> FrameworkVersions;
/freebsd/contrib/ntp/sntp/libopts/
H A DCOPYING.lgplv319 "The Library" refers to a covered work governed by this License,
23 by the Library, but which is not otherwise based on the Library.
24 Defining a subclass of a class defined by the Library is deemed a mode
25 of using an interface provided by the Library.
28 Application with the Library. The particular version of the Library
49 If you modify a copy of the Library, and, in your modifications, a
63 3. Object Code Incorporating Material from Library Header Files.
66 a header file that is part of the Library. You may convey such object
73 Library is used in it and that the Library and its use are
83 portions of the Library contained in the Combined Work and reverse
[all …]
/freebsd/contrib/dialog/
H A DCOPYING10 as the successor of the GNU Library Public License, version 2, hence
99 free software. For example, permission to use the GNU C Library in
106 linked with the Library has the freedom and the wherewithal to run
107 that program using a modified version of the Library.
128 The "Library", below, refers to any such software library or work
130 Library" means either the Library or any derivative work under
131 copyright law: that is to say, a work containing the Library or a
144 running a program using the Library is not restricted, and output from
146 on the Library (independent of the use of the Library in a tool for
147 writing it). Whether that is true depends on what the Library does
[all …]
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/
H A DDirectoryScanner.cpp19 HeaderSeq DirectoryScanner::getHeaders(ArrayRef<Library> Libraries) { in getHeaders()
21 for (const Library &Lib : Libraries) in getHeaders()
50 Library &Lib = getOrCreateLibrary(Directory, Libraries); in scanForUnwrappedLibraries()
75 Library &
77 std::vector<Library> &Libs) const { in getOrCreateLibrary()
82 find_if(Libs, [Path](const Library &L) { return L.getPath() == Path; }); in getOrCreateLibrary()
90 Error DirectoryScanner::scanHeaders(StringRef Path, Library &Lib, in scanHeaders()
140 std::vector<Library> &Libs) const { in scanMultipleFrameworks()
161 Library &Framework = getOrCreateLibrary(Curr, Libs); in scanMultipleFrameworks()
172 std::vector<Library> &Libs) const { in scanSubFrameworksDirectory()
[all …]
H A DLibrary.cpp15 StringRef Library::getFrameworkNameFromInstallName(StringRef InstallName) { in getFrameworkNameFromInstallName()
24 StringRef Library::getName() const { in getName()
/freebsd/sys/contrib/device-tree/Bindings/input/
H A Dti,drv260x.txt20 DRV260X_ERM_LIB_A - Pre-programmed Library
21 DRV260X_ERM_LIB_B - Pre-programmed Library
22 DRV260X_ERM_LIB_C - Pre-programmed Library
23 DRV260X_ERM_LIB_D - Pre-programmed Library
24 DRV260X_ERM_LIB_E - Pre-programmed Library
25 DRV260X_ERM_LIB_F - Pre-programmed Library
26 DRV260X_LIB_LRA - Pre-programmed LRA Library
/freebsd/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);
/freebsd/contrib/llvm-project/llvm/lib/Passes/
H A DPassPlugin.cpp18 auto Library = in Load() local
20 if (!Library.isValid()) in Load()
25 PassPlugin P{Filename, Library}; in Load()
30 (intptr_t)Library.getAddressOfSymbol("llvmGetPassPluginInfo"); in Load()
/freebsd/contrib/llvm-project/llvm/include/llvm/Passes/
H A DPassPlugin.h87 PassPlugin(const std::string &Filename, const sys::DynamicLibrary &Library) in PassPlugin() argument
88 : Filename(Filename), Library(Library), Info() {} in PassPlugin()
91 sys::DynamicLibrary Library; variable
/freebsd/contrib/bc/manuals/
H A Dalgorithms.md70 ### Sine and Cosine (`bc` Math Library Only)
94 ### Exponentiation (`bc` Math Library Only)
116 ### Natural Logarithm (`bc` Math Library Only)
139 ### Arctangent (`bc` Math Library Only)
159 ### Bessel (`bc` Math Library Only)
188 ### Non-Integer Exponentiation (`bc` Math Library 2 Only)
264 ### Rounding (`bc` Math Library 2 Only)
273 ### Ceiling (`bc` Math Library 2 Only)
281 ### Factorial (`bc` Math Library 2 Only)
290 ### Permutations (`bc` Math Library 2 Only)
[all …]
/freebsd/contrib/libpcap/doc/
H A DREADME.macos33 /Library/StartupItems directory should be created if it doesn't already
35 /Library/StartupItems directory (copy the entire directory, so that
36 there's a /Library/StartupItems/ChmodBPF directory, containing all the
38 items in that directory to /Library/StartupItems). The ChmodBPF
49 should be installed in /Library/LaunchDaemons. chmod_bpf, and
59 sudo launchctl load /Library/LaunchDaemons/org.tcpdump.chmod_bpf.plist
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dlibomp.rc.var41 VALUE "FileDescription", "LLVM* OpenMP* Runtime Library\0"
45 VALUE "ProductName", "LLVM* OpenMP* Runtime Library\0"
51 "LLVM* OpenMP* @LIBOMP_LEGAL_TYPE@ Library "
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStubV5.cpp937 Object Library; in serializeIF() local
941 if (!insertNonEmptyValues(Library, TBDKey::TargetInfo, in serializeIF()
946 if (!insertNonEmptyValues(Library, TBDKey::InstallName, std::move(Name))) in serializeIF()
951 insertNonEmptyValues(Library, TBDKey::Flags, std::move(Flags)); in serializeIF()
955 insertNonEmptyValues(Library, TBDKey::CurrentVersion, std::move(CurrentV)); in serializeIF()
959 insertNonEmptyValues(Library, TBDKey::CompatibilityVersion, in serializeIF()
964 insertNonEmptyValues(Library, TBDKey::SwiftABI, std::move(SwiftABI)); in serializeIF()
967 insertNonEmptyValues(Library, TBDKey::RPath, std::move(RPaths)); in serializeIF()
971 insertNonEmptyValues(Library, TBDKey::ParentUmbrella, std::move(Umbrellas)); in serializeIF()
975 insertNonEmptyValues(Library, TBDKey::AllowableClients, std::move(Clients)); in serializeIF()
[all …]
/freebsd/sys/contrib/edk2/
H A DMdePkg.dec49 UefiUsbLib|Include/Library/UefiUsbLib.h
53 UefiRuntimeServicesTableLib|Include/Library/UefiRuntimeServicesTableLib.h
57 UefiRuntimeLib|Include/Library/UefiRuntimeLib.h
62 UefiLib|Include/Library/UefiLib.h
65 UefiDriverEntryPoint|Include/Library/UefiDriverEntryPoint.h
67 ## @libraryclass UEFI Decompress Library Functions defintion for UEFI compress algorithm.
68 UefiDecompressLib|Include/Library/UefiDecompressLib.h
72 UefiBootServicesTableLib|Include/Library/UefiBootServicesTableLib.h
75 UefiApplicationEntryPoint|Include/Library/UefiApplicationEntryPoint.h
78 TimerLib|Include/Library/TimerLib.h
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dclocale44 The header search paths should contain the C++ Standard Library headers before \
45 any C Standard Library, and you are probably using compiler flags that make that \
H A Dcfloat79 The header search paths should contain the C++ Standard Library headers before \
80 any C Standard Library, and you are probably using compiler flags that make that \
H A Dcerrno32 The header search paths should contain the C++ Standard Library headers before \
33 any C Standard Library, and you are probably using compiler flags that make that \
/freebsd/crypto/heimdal/lib/gssapi/mech/
H A Dmech.cat520 Library A shared library containing the implementation of this
27 Library options (optional)
28 Optionsal parameters interpreted by the mechanism. Library
/freebsd/sys/contrib/openzfs/config/
H A Dnls.m49 dnl the GNU General Public License or the GNU Library General Public
13 dnl by the GNU Library General Public License, and the rest of the GNU
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DTapiUniversal.h113 struct Library { struct
119 std::vector<Library> Libraries; argument
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/
H A DDXILMetadata.cpp66 case Triple::Library: in getShortShaderStage()
122 if (ShaderKind == Triple::EnvironmentType::Library) { in EntryProps()
157 if (IsLib && ShaderKind != Triple::EnvironmentType::Library) in emitDXILEntryProps()
297 case Triple::EnvironmentType::Library: { in createEntryMD()

12345678