Home
last modified time | relevance | path

Searched full:module (Results 1 – 25 of 5062) sorted by relevance

12345678910>>...203

/freebsd/contrib/llvm-project/libcxx/include/
H A Dmodule.modulemap2 module std_algorithm [system] {
6 module std_any [system] {
10 module std_array [system] {
14 module std_atomic [system] {
18 module std_barrier [system] {
22 module std_bit [system] {
26 module std_bitset [system] {
30 module std_charconv [system] {
34 module std_chrono [system] {
38 module std_codecvt [system] {
[all …]
/freebsd/sys/contrib/openzfs/lib/libzpool/
H A DMakefile.am24 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 Dmodule.modulemap2 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 Dmodule.modulemap1 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/sys/contrib/openzfs/lib/libicp/
H A DMakefile.am7 module/icp/spi/kcf_spi.c \
8 module/icp/api/kcf_ctxops.c \
9 module/icp/api/kcf_cipher.c \
10 module/icp/api/kcf_mac.c \
11 module/icp/algs/aes/aes_impl_aesni.c \
12 module/icp/algs/aes/aes_impl_generic.c \
13 module/icp/algs/aes/aes_impl_x86-64.c \
14 module/icp/algs/aes/aes_impl.c \
15 module/icp/algs/aes/aes_modes.c \
16 module/icp/algs/blake3/blake3.c \
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DModuleMap.h10 // module as it relates to headers.
19 #include "clang/Basic/Module.h"
46 /// A mechanism to observe the actions of the module map parser as it
47 /// reads module map files.
54 /// Called when a module map file has been read.
59 /// \param IsSystem Whether this is a module map from a system include path.
63 /// Called when a header is added during module map parsing.
68 /// Called when an umbrella header is added during module map parsing.
87 /// Language options used to parse the module map itself.
92 /// The module that the main source file is associated with (the module
[all …]
H A DModuleLoader.h1 //===- ModuleLoader.h - Module Loader Interface -----------------*- C++ -*-===//
18 #include "clang/Basic/Module.h"
31 /// module or submodule, e.g., std.vector.
34 /// Describes the result of attempting to load a module.
38 // We either succeeded or failed to load the named module.
41 // The module exists, but does not actually contain the named submodule.
46 // The module exists but cannot be imported due to a configuration mismatch.
49 llvm::PointerIntPair<Module *, 2, LoadResultKind> Storage;
52 ModuleLoadResult(Module *M) : Storage(M, Normal) {} in ModuleLoadResult()
54 ModuleLoadResult(Module *M, LoadResultKind Kind) : Storage(M, Kind) {} in ModuleLoadResult()
[all …]
H A DHeaderSearch.h53 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
150 /// Update the module membership bits based on the header role.
291 /// The hash used for module cache paths.
294 /// The path to the module cache.
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DModule.h1 //===- Module.h - Describe a module -----------------------------*- C++ -*-===//
10 /// Defines the clang::Module class, which describes a module in the
53 /// Describes the name of a module.
56 /// The signature of a module, which is a hash of the AST content.
102 /// Describes a module or submodule.
104 /// Aligned to 8 bytes to allow for llvm::PointerIntPair<Module *, 3>.
105 class alignas(8) Module {
107 /// The name of this module.
110 /// The location of the module definition.
117 /// This is a module that was defined by a module map and built out
[all …]
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dmodule.modulemap1 /*===---- 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 intel {
69 explicit module mm_malloc {
75 explicit module cpuid {
[all …]
/freebsd/contrib/llvm-project/clang/include/
H A Dmodule.modulemap1 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 {
90 module * { export * }
92 module Clang_Basic_TokenKinds {
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaModule.cpp25 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/contrib/llvm-project/clang/include/clang/Serialization/
H A DModuleManager.h1 //===- 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 DModuleFile.h1 //===- ModuleFile.h - Module file description -------------------*- C++ -*-===//
9 // This file defines the Module class, which describes a module that has
18 #include "clang/Basic/Module.h"
41 /// Specifies the kind of module that has been loaded.
43 /// File is an implicitly-loaded module.
46 /// File is an explicitly-loaded module.
58 /// File is from a prebuilt module path.
117 /// Information about a module that has been loaded by the ASTReader.
119 /// Each instance of the Module class corresponds to a single AST file, which
120 /// may be a precompiled header, precompiled preamble, a module, or an AST file
[all …]
/freebsd/sys/contrib/openzfs/lib/libzstd/
H A DMakefile.am11 module/zstd/lib/common/entropy_common.c \
12 module/zstd/lib/common/error_private.c \
13 module/zstd/lib/common/fse_decompress.c \
14 module/zstd/lib/common/pool.c \
15 module/zstd/lib/common/zstd_common.c \
16 module/zstd/lib/compress/fse_compress.c \
17 module/zstd/lib/compress/hist.c \
18 module/zstd/lib/compress/huf_compress.c \
19 module/zstd/lib/compress/zstd_compress_literals.c \
20 module/zstd/lib/compress/zstd_compress_sequences.c \
[all …]
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DModule.cpp1 //===- Module.cpp - Implement the Module class ----------------------------===//
9 // This file implements the Module class for the IR library.
13 #include "llvm/IR/Module.h"
71 // Primitive Module methods.
74 Module::Module(StringRef MID, LLVMContext &C) in Module() function in Module
81 Module::~Module() { in ~Module()
90 void Module::removeDebugIntrinsicDeclarations() { in removeDebugIntrinsicDeclarations()
113 Module::createRNG(const StringRef Name) const { in createRNG()
117 // when the Module ID and thus the input filename is the same. This in createRNG()
124 // const reference to their IR Module. Alternatively we can always in createRNG()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DModuleMap.cpp10 // of a module as it relates to headers.
20 #include "clang/Basic/Module.h"
58 void ModuleMap::resolveLinkAsDependencies(Module *Mod) { in resolveLinkAsDependencies()
69 void ModuleMap::addLinkAsDependency(Module *Mod) { in addLinkAsDependency()
76 Module::HeaderKind ModuleMap::headerRoleToKind(ModuleHeaderRole Role) { in headerRoleToKind()
79 return Module::HK_Normal; in headerRoleToKind()
81 return Module::HK_Private; in headerRoleToKind()
83 return Module::HK_Textual; in headerRoleToKind()
85 return Module::HK_PrivateTextual; in headerRoleToKind()
87 return Module::HK_Excluded; in headerRoleToKind()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DModule.cpp1 //===- 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"
37 Module::Module(StringRef Name, SourceLocation DefinitionLoc, Module *Parent, in Module() function in Module
61 Module::~Module() { in ~Module()
131 bool Module::isUnimportable(const LangOptions &LangOpts, in isUnimportable()
133 Module *&ShadowingModule) const { in isUnimportable()
137 for (const Module *Current = this; Current; Current = Current->Parent) { in isUnimportable()
151 llvm_unreachable("could not find a reason why module is unimportable"); in isUnimportable()
155 // the specified module, meaning Clang won't build the specified module. This
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
H A DModuleDepCollector.h13 #include "clang/Basic/Module.h"
43 explicit PrebuiltModuleDep(const Module *M) in PrebuiltModuleDep()
49 /// This is used to identify a specific module.
51 /// The name of the module. This may include `:` for C++20 module partitions,
55 /// The context hash of a module represents the compiler options that affect
79 /// The name of the module. This may include `:` for partitions.
82 /// Optional. The source path to the module.
85 /// If this module is a standard c++ interface unit.
97 /// An output from a module compilation, such as the path of the module file.
99 /// The module file (.pcm). Required.
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModule.h1 //===- llvm/Module.h - C++ class to represent a VM module -------*- C++ -*-===//
10 /// Module.h This file contains the declarations for the Module class.
54 /// A Module instance is used to store all the information related to an
55 /// LLVM module. Modules are the top level container of all other LLVM
56 /// Intermediate Representation (IR) objects. Each module directly contains a
58 /// other modules) this module depends on, a symbol table, and various data
61 /// A module maintains a GlobalList object that is used to hold all
62 /// constant references to global variables in the module. When a global
65 class LLVM_EXTERNAL_VISIBILITY Module {
114 /// This enumeration defines the supported behaviors of module flags.
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DModuleList.h38 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 …]
/freebsd/contrib/llvm-project/llvm/tools/bugpoint/
H A DBugDriver.h28 class Module;
48 std::unique_ptr<Module> Program; // The raw program, linked together
108 /// debugCodeGenerator - This method narrows down a module to a function or
117 Module &getProgram() const { return *Program; }
119 /// Set the current module to the specified module, returning the old one.
120 std::unique_ptr<Module> swapProgramIn(std::unique_ptr<Module> M);
131 /// bugdriver with it. This deletes the old module and sets the specified one
133 void setNewProgram(std::unique_ptr<Module>
29 class Module; global() variable
[all...]
/freebsd/share/man/man4/
H A Dkld.446 There are several defined module types, listed below, which can
49 is a generic type, for which the module itself handles loading and
81 program unloads any given loaded module, if no other module is dependent
82 upon the given module.
91 .Sh "MODULE TYPES"
98 module is loaded and destroyed when it is unloaded by
106 .Bl -tag -width /usr/include/sys/module.h -compact
108 directory containing module binaries built for the kernel also
110 .It Pa /usr/include/sys/module
[all...]
/freebsd/contrib/unbound/util/
H A Dmodule.h2 * util/module.h - DNS handling module interface
41 * The module interface uses the DNS modules as state machines. The
47 * The module provides a number of functions, listed in the module_func_block.
48 * The module is inited and destroyed and memory usage queries, for the
49 * module as a whole, for entire-module state (such as a cache). And per-query
56 * The module environment contains services and information and caches
58 * function pointers for module-specific tasks (like sending queries).
60 * *** Example module calls for a normal query
65 * At the start of the program the iterator module is initialised.
66 * The iterator module sets up its global state, such as donotquery lists
[all …]
/freebsd/lib/libpam/modules/pam_krb5/
H A Dpam_krb5.88 .Nd Kerberos 5 PAM module
12 The Kerberos 5 service module for PAM, typically
21 module is a shared object
26 .Ss Kerberos 5 Authentication Module
49 module will use the prompt
61 The following options may be passed to the authentication module:
74 If the authentication module is not the first in the stack,
75 and a previous module obtained the user's password, that password is
78 module returns failure without prompting the user for a password.
79 This option has no effect if the authentication module is
[all …]

12345678910>>...203