| /freebsd/lib/libc++/ |
| H A D | module.modulemap | 1 // This module contains headers related to the configuration of the library. These headers 3 module std_config [system] { 14 module std_core [system] { 15 module cstddef { 16 module byte { header "__cstddef/byte.h" } 17 module max_align_t { 21 module nullptr_t { header "__cstddef/nullptr_t.h" } 22 module ptrdiff_t { header "__cstddef/ptrdiff_t.h" } 23 module size_t { header "__cstddef/size_t.h" } 26 module cstdint { [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | module.modulemap.in | 1 // This module contains headers related to the configuration of the library. These headers 3 module std_config [system] { 14 module std_core [system] { 15 module cstddef { 16 module byte { header "__cstddef/byte.h" } 17 module max_align_t { 21 module nullptr_t { header "__cstddef/nullptr_t.h" } 22 module ptrdiff_t { header "__cstddef/ptrdiff_t.h" } 23 module size_t { header "__cstddef/size_t.h" } 26 module cstdint { [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | module.modulemap | 2 module cxx03_std_algorithm [system] { 6 module cxx03_std_any [system] { 10 module cxx03_std_array [system] { 14 module cxx03_std_atomic [system] { 18 module cxx03_std_barrier [system] { 22 module cxx03_std_bit [system] { 26 module cxx03_std_bitset [system] { 30 module cxx03_std_charconv [system] { 34 module cxx03_std_chrono [system] { 38 module cxx03_std_codecvt [system] { [all …]
|
| /freebsd/sys/contrib/openzfs/lib/libzpool/ |
| H A D | Makefile.am | 24 module/lua/lapi.c \ 25 module/lua/lauxlib.c \ 26 module/lua/lbaselib.c \ 27 module/lua/lcode.c \ 28 module/lua/lcompat.c \ 29 module/lua/lcorolib.c \ 30 module/lua/lctype.c \ 31 module/lua/ldebug.c \ 32 module/lua/ldo.c \ 33 module/lua/lfunc.c \ [all …]
|
| /freebsd/contrib/llvm-project/lldb/include/ |
| H A D | module.modulemap | 2 module lldb_API { 8 module * { export * } 11 module lldb_Host { 17 module ConnectionFileDescriptor { header "lldb/Host/ConnectionFileDescriptor.h" export * } 18 module Debug { header "lldb/Host/Debug.h" export * } 19 module Editline { header "lldb/Host/Editline.h" export * } 20 module FileCache { header "lldb/Host/FileCache.h" export * } 21 module File { header "lldb/Host/File.h" export * } 22 module FileAction { header "lldb/Host/FileAction.h" export * } 23 module FileSystem { header "lldb/Host/FileSystem.h" export * } [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/ |
| H A D | module.modulemap | 1 module LLVM_C { 3 module * { export * } 6 module LLVM_Analysis { 9 module * { export * } 17 module LLVM_AsmParser { 20 module * { export * } 23 module LLVM_CodeGenTypes { 26 module LLT { 29 module MVT { 31 extern module LLVM_Extern_CodeGenTypes_Gen "module.extern.modulemap" [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Lex/ |
| H A D | ModuleMap.h | 10 // module as it relates to headers. 19 #include "clang/Basic/Module.h" 47 /// A mechanism to observe the actions of the module map loader as it 48 /// reads module map files. 55 /// Called when a module map file has been read. 60 /// \param IsSystem Whether this is a module map from a system include path. 64 /// Called when a header is added during module map parsing. 69 /// Called when an umbrella header is added during module map parsing. 88 /// The module that the main source file is associated with (the module 90 Module *SourceModule = nullptr; [all …]
|
| H A D | ModuleLoader.h | 1 //===- ModuleLoader.h - Module Loader Interface -----------------*- C++ -*-===// 19 #include "clang/Basic/Module.h" 32 /// module or submodule, e.g., std.vector. 35 /// Describes the result of attempting to load a module. 39 // We either succeeded or failed to load the named module. 42 // The module exists, but does not actually contain the named submodule. 47 // The module exists but cannot be imported due to a configuration mismatch. 50 llvm::PointerIntPair<Module *, 2, LoadResultKind> Storage; 53 ModuleLoadResult(Module *M) : Storage(M, Normal) {} in ModuleLoadResult() 55 ModuleLoadResult(Module *M, LoadResultKind Kind) : Storage(M, Kind) {} in ModuleLoadResult() [all …]
|
| H A D | HeaderSearch.h | 53 class Module; variable 88 /// Whether this header is part of and built with a module. i.e. it is listed 89 /// in a module map, and is not `excluded` or `textual`. (same meaning as 94 /// Whether this header is a `textual header` in a module. If a header is 95 /// textual in one module and normal in another module, this bit will not be 100 /// Whether this header is part of the module that we are building, even if it 101 /// doesn't build with the module. i.e. this will include `excluded` and 136 /// Update the module membership bits based on the header role. 279 /// The hash used for module cache paths. 282 /// The path to the module cache. [all …]
|
| /freebsd/sys/contrib/openzfs/lib/libicp/ |
| H A D | Makefile.am | 6 libicp_la_CPPFLAGS += -I$(top_srcdir)/module/icp/include 11 module/icp/spi/kcf_spi.c \ 12 module/icp/api/kcf_ctxops.c \ 13 module/icp/api/kcf_cipher.c \ 14 module/icp/api/kcf_mac.c \ 15 module/icp/algs/aes/aes_impl_aesni.c \ 16 module/icp/algs/aes/aes_impl_generic.c \ 17 module/icp/algs/aes/aes_impl_x86-64.c \ 18 module/icp/algs/aes/aes_impl.c \ 19 module/icp/algs/aes/aes_modes.c \ [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | Module.h | 1 //===- Module.h - Describe a module -----------------------------*- C++ -*-===// 10 /// Defines the clang::Module class, which describes a module in the 54 /// Describes the name of a module. 57 /// The signature of a module, which is a hash of the AST content. 108 /// The set of attributes that can be attached to a module. 110 /// Whether this is a system module. 114 /// Whether this is an extern "C" module. 122 /// Whether files in this module can only include non-modular headers 132 /// Required to construct a Module. 135 /// of all Module instances. [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Headers/ |
| H A D | module.modulemap | 1 /*===---- module.modulemap - intrinsics module map -------------------------=== 10 module _Builtin_intrinsics [system] [extern_c] { 11 explicit module altivec { 16 explicit module arm { 19 explicit module acle { 24 explicit module neon { 31 explicit module sve { 38 explicit module arm64 { 46 explicit module intel { 79 explicit module mm_malloc { [all …]
|
| /freebsd/contrib/llvm-project/clang/include/ |
| H A D | module.modulemap | 1 module Clang_C { 3 module * { export * } 6 module Clang_Analysis { 12 module * { export * } 21 module Clang_AST { 30 module * { export * } 33 module Clang_ASTMatchers { requires cplusplus umbrella "clang/ASTMatchers" module * { export * } } 35 module Clang_Basic { 82 module * { export * } 84 module Clang_Basic_TokenKinds { [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaModule.cpp | 25 static void checkModuleImportContext(Sema &S, Module *M, in checkModuleImportContext() 61 // of the hierarchical access path for a clang module. However for C++20 78 /// the \param Imported module unit is in the same module with the \param 81 /// primary module interface unit corresponding to the module \param 82 /// CurrentModule. Since currently it is expensive to decide whether two module 83 /// units come from the same module by comparing the module name. 85 isImportingModuleUnitFromSameModule(ASTContext &Ctx, Module *Imported, in isImportingModuleUnitFromSameModule() 86 Module *CurrentModule, in isImportingModuleUnitFromSameModule() 87 Module *&FoundPrimaryModuleInterface) { in isImportingModuleUnitFromSameModule() 91 // The a partition unit we're importing must be in the same module of the in isImportingModuleUnitFromSameModule() [all …]
|
| /freebsd/sys/contrib/openzfs/lib/libzstd/ |
| H A D | Makefile.am | 12 module/zstd/lib/common/entropy_common.c \ 13 module/zstd/lib/common/error_private.c \ 14 module/zstd/lib/common/fse_decompress.c \ 15 module/zstd/lib/common/pool.c \ 16 module/zstd/lib/common/zstd_common.c \ 17 module/zstd/lib/compress/fse_compress.c \ 18 module/zstd/lib/compress/hist.c \ 19 module/zstd/lib/compress/huf_compress.c \ 20 module/zstd/lib/compress/zstd_compress_literals.c \ 21 module/zstd/lib/compress/zstd_compress_sequences.c \ [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Serialization/ |
| H A D | ModuleManager.h | 1 //===- ModuleManager.cpp - Module Manager -----------------------*- C++ -*-===// 51 /// The chain of non-module PCH files. The first entry is the one named 70 /// Knows how to unwrap module containers. 73 /// Preprocessor's HeaderSearchInfo containing the module map. 83 /// The list of module files that both we and the global module index 86 /// Either the global index or the module manager may have modules that the 88 /// (in which case the module manager could have modules it does not) and 93 /// The global module index, if one is attached. 95 /// The global module index will actually be owned by the ASTReader; this is 106 /// The stack used when marking the imports of a particular module [all …]
|
| H A D | ModuleFile.h | 1 //===- ModuleFile.h - Module file description -------------------*- C++ -*-===// 9 // This file defines the Module class, which describes a module that has 19 #include "clang/Basic/Module.h" 42 /// Specifies the kind of module that has been loaded. 44 /// File is an implicitly-loaded module. 47 /// File is an explicitly-loaded module. 59 /// File is from a prebuilt module path. 123 /// Information about a module that has been loaded by the ASTReader. 125 /// Each instance of the Module class corresponds to a single AST file, which 126 /// may be a precompiled header, precompiled preamble, a module, or an AST file [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Lex/ |
| H A D | ModuleMap.cpp | 10 // of a module as it relates to headers. 20 #include "clang/Basic/Module.h" 51 void ModuleMap::resolveLinkAsDependencies(Module *Mod) { in resolveLinkAsDependencies() 62 void ModuleMap::addLinkAsDependency(Module *Mod) { in addLinkAsDependency() 69 Module::HeaderKind ModuleMap::headerRoleToKind(ModuleHeaderRole Role) { in headerRoleToKind() 72 return Module::HK_Normal; in headerRoleToKind() 74 return Module::HK_Private; in headerRoleToKind() 76 return Module::HK_Textual; in headerRoleToKind() 78 return Module::HK_PrivateTextual; in headerRoleToKind() 80 return Module::HK_Excluded; in headerRoleToKind() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Module.cpp | 1 //===- Module.cpp - Implement the Module class ----------------------------===// 9 // This file implements the Module class for the IR library. 13 #include "llvm/IR/Module.h" 69 // Primitive Module methods. 72 Module::Module(StringRef MID, LLVMContext &C) in Module() function in Module 78 Module &Module::operator=(Module &&Other) { in operator =() 79 assert(&Context == &Other.Context && "Module must be in the same Context"); in operator =() 112 Module::~Module() { in ~Module() 121 void Module::removeDebugIntrinsicDeclarations() { in removeDebugIntrinsicDeclarations() 149 Module::createRNG(const StringRef Name) const { in createRNG() [all …]
|
| /freebsd/crypto/krb5/src/lib/krb5/krb/ |
| H A D | authdata.c | 78 fprintf(stderr, "warning: module \"%s\" does not advertise " in k5_ad_init_modules() 90 fprintf(stderr, "warning: skipping module \"%s\" which " in k5_ad_init_modules() 135 fprintf(stderr, "init module \"%s\", ad_type %d, flags %08x\n", in k5_ad_init_modules() 164 struct _krb5_authdata_context_module *module = &context->modules[i]; in k5_ad_size() local 167 if ((module->flags & flags) == 0) in k5_ad_size() 171 if (!IS_PRIMARY_INSTANCE(module)) in k5_ad_size() 174 if (module->ftable->size == NULL) in k5_ad_size() 177 assert(module->ftable->externalize != NULL); in k5_ad_size() 179 size = sizeof(krb5_int32) /* namelen */ + strlen(module->name); in k5_ad_size() 181 code = (*module->ftable->size)(kcontext, in k5_ad_size() [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/ |
| H A D | ModuleDepCollector.h | 13 #include "clang/Basic/Module.h" 44 explicit PrebuiltModuleDep(const Module *M) in PrebuiltModuleDep() 55 /// When a module is discovered to not be in stable directories, traverse & 60 /// Read-only access to whether the module is made up of dependencies in 70 /// Add a direct dependent module file, so it can be updated if the current 71 /// module is from stable directores. 76 /// Update whether the prebuilt module resolves entirely in a stable 91 /// This is used to identify a specific module. 93 /// The name of the module. This may include `:` for C++20 module partitions, 97 /// The context hash of a module represents the compiler options that affect [all …]
|
| /freebsd/contrib/pam-krb5/ |
| H A D | Makefile.am | 20 docs/docknot.yaml docs/pam_krb5.pod module/pam_krb5.map \ 21 module/pam_krb5.sym tests/README tests/TESTS tests/config/README \ 45 VERSION_LDFLAGS = -Wl,--version-script=${srcdir}/module/pam_krb5.map 47 VERSION_LDFLAGS = -export-symbols ${srcdir}/module/pam_krb5.sym 51 pam_LTLIBRARIES = module/pam_krb5.la 52 module_pam_krb5_la_SOURCES = module/account.c module/alt-auth.c \ 53 module/auth.c module/cache.c module/context.c module/fast.c \ 54 module/internal.h module/options.c module/password.c \ 55 module/prompting.c module/public.c module/setcred.c \ 56 module/support.c [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Module.h | 1 //===- llvm/Module.h - C++ class to represent a VM module -------*- C++ -*-===// 10 /// Module.h This file contains the declarations for the Module class. 56 /// A Module instance is used to store all the information related to an 57 /// LLVM module. Modules are the top level container of all other LLVM 58 /// Intermediate Representation (IR) objects. Each module directly contains a 60 /// other modules) this module depends on, a symbol table, and various data 63 /// A module maintains a GlobalList object that is used to hold all 64 /// constant references to global variables in the module. When a global 67 class LLVM_ABI Module { 116 /// This enumeration defines the supported behaviors of module flags. [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Basic/ |
| H A D | Module.cpp | 1 //===- Module.cpp - Describe a module -------------------------------------===// 9 // This file defines the Module class, which describes a module in the source 14 #include "clang/Basic/Module.h" 36 Module::Module(ModuleConstructorTag, StringRef Name, in Module() function in Module 37 SourceLocation DefinitionLoc, Module *Parent, bool IsFramework, in Module() 60 Module::~Module() = default; 126 bool Module::isUnimportable(const LangOptions &LangOpts, in isUnimportable() 128 Module *&ShadowingModule) const { in isUnimportable() 132 for (const Module *Current = this; Current; Current = Current->Parent) { in isUnimportable() 146 llvm_unreachable("could not find a reason why module is unimportable"); in isUnimportable() [all …]
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | ModuleList.h | 38 class Module; variable 99 /// A collection class for Module objects. 101 /// Modules in the module collection class are stored as reference counted 102 /// shared pointers to Module objects. 123 /// Creates an empty list of Module objects. 128 /// Creates a new module list object with a copy of the modules from \a rhs. 131 /// Another module list object. 141 /// Copies the module list from \a rhs into this list. 144 /// Another module list object. 150 /// Append a module to the module list. [all …]
|