| /freebsd/contrib/mandoc/ |
| H A D | lib.in | 27 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 D | msec.in | 27 LINE("3", "FreeBSD Library Functions Manual") 28 LINE("3lua", "Lua Library Functions Manual")
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | kicad | 29 # 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 D | DirectoryScanner.h | 38 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 D | Library.h | 21 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 D | COPYING.lgplv3 | 19 "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/llvm-project/clang/lib/InstallAPI/ |
| H A D | DirectoryScanner.cpp | 18 HeaderSeq DirectoryScanner::getHeaders(ArrayRef<Library> Libraries) { in getHeaders() 20 for (const Library &Lib : Libraries) in getHeaders() 49 Library &Lib = getOrCreateLibrary(Directory, Libraries); in scanForUnwrappedLibraries() 74 Library & 76 std::vector<Library> &Libs) const { in getOrCreateLibrary() 81 find_if(Libs, [Path](const Library &L) { return L.getPath() == Path; }); in getOrCreateLibrary() 89 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 D | Library.cpp | 15 StringRef Library::getFrameworkNameFromInstallName(StringRef InstallName) { in getFrameworkNameFromInstallName() 24 StringRef Library::getName() const { in getName()
|
| /freebsd/contrib/dialog/ |
| H A D | COPYING | 10 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/stand/libsa/ |
| H A D | zalloc_protos.h | 33 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/sys/contrib/device-tree/Bindings/input/ |
| H A D | ti,drv260x.txt | 20 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/contrib/llvm-project/llvm/lib/Passes/ |
| H A D | PassPlugin.cpp | 18 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 D | PassPlugin.h | 87 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/crypto/krb5/src/include/krb5/ |
| H A D | krb5.hin | 506 * @param [in] context Library context 534 * @param [in] context Library context 563 * @param [in] context Library context 580 * @param [in] context Library context 593 * @param [in] context Library context 607 * @param [in] context Library context 621 * @param [in] context Library context 634 * @param [in] context Library context 653 * @param [in] context Library context 665 * @param [in] context Library context [all …]
|
| /freebsd/contrib/bc/manuals/ |
| H A D | algorithms.md | 70 ### 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 D | README.macos | 33 /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 D | libomp.rc.var | 41 VALUE "FileDescription", "LLVM* OpenMP* Runtime Library\0" 45 VALUE "ProductName", "LLVM* OpenMP* Runtime Library\0" 51 "LLVM* OpenMP* @LIBOMP_LEGAL_TYPE@ Library "
|
| /freebsd/crypto/krb5/src/include/ |
| H A D | osconf.hin | 47 #define DEFAULT_SECURE_PROFILE_PATH "/Library/Preferences/edu.mit.Kerberos:/etc/krb5.conf@SYSCONFCO… 48 #define DEFAULT_PROFILE_PATH ("~/Library/Preferences/edu.mit.Kerberos" ":" DEFAULT_SECURE_PR… 49 #define KRB5_PLUGIN_BUNDLE_DIR "/System/Library/KerberosPlugins/KerberosFrameworkPlugins" 50 #define KDB5_PLUGIN_BUNDLE_DIR "/System/Library/KerberosPlugins/KerberosDatabasePlugins" 51 #define KRB5_AUTHDATA_PLUGIN_BUNDLE_DIR "/System/Library/KerberosPlugins/KerberosAuthDataPlugins"
|
| /freebsd/sys/contrib/edk2/ |
| H A D | MdePkg.dec | 33 Library/MipiSysTLib/mipisyst/library/include 60 UefiUsbLib|Include/Library/UefiUsbLib.h 64 UefiRuntimeServicesTableLib|Include/Library/UefiRuntimeServicesTableLib.h 68 UefiRuntimeLib|Include/Library/UefiRuntimeLib.h 73 UefiLib|Include/Library/UefiLib.h 76 UefiDriverEntryPoint|Include/Library/UefiDriverEntryPoint.h 78 ## @libraryclass UEFI Decompress Library Functions defintion for UEFI compress algorithm. 79 UefiDecompressLib|Include/Library/UefiDecompressLib.h 83 UefiBootServicesTableLib|Include/Library/UefiBootServicesTableLib.h 86 UefiApplicationEntryPoint|Include/Library/UefiApplicationEntryPoint.h [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
| H A D | TextStubV5.cpp | 988 Object Library; in serializeIF() local 992 if (!insertNonEmptyValues(Library, TBDKey::TargetInfo, in serializeIF() 997 if (!insertNonEmptyValues(Library, TBDKey::InstallName, std::move(Name))) in serializeIF() 1002 insertNonEmptyValues(Library, TBDKey::Flags, std::move(Flags)); in serializeIF() 1006 insertNonEmptyValues(Library, TBDKey::CurrentVersion, std::move(CurrentV)); in serializeIF() 1010 insertNonEmptyValues(Library, TBDKey::CompatibilityVersion, in serializeIF() 1015 insertNonEmptyValues(Library, TBDKey::SwiftABI, std::move(SwiftABI)); in serializeIF() 1019 insertNonEmptyValues(Library, TBDKey::RPath, std::move(RPaths)); in serializeIF() 1023 insertNonEmptyValues(Library, TBDKey::ParentUmbrella, std::move(Umbrellas)); in serializeIF() 1027 insertNonEmptyValues(Library, TBDKey::AllowableClients, std::move(Clients)); in serializeIF() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | TapiUniversal.cpp | 36 Libraries.emplace_back(Library({Name, Arch, DocIdx})); in TapiUniversal() 50 const Library &CurrLib = Parent->Libraries[Index]; in getAsObjectFile()
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | clocale | 44 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 D | cfloat | 79 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 D | cstddef | 47 The header search paths should contain the C++ Standard Library headers before \ 48 any C Standard Library, and you are probably using compiler flags that make that \
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | cstddef | 47 The header search paths should contain the C++ Standard Library headers before \ 48 any C Standard Library, and you are probably using compiler flags that make that \
|