Home
last modified time | relevance | path

Searched refs:module (Results 1 – 25 of 1450) sorted by relevance

12345678910>>...58

/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/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/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/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/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 …]
H A Dmodule.extern.modulemap1 module LLVM_Extern_CodeGenTypes_Gen {}
2 module LLVM_Extern_Config_Def {}
3 module LLVM_Extern_IR_Attributes_Gen {}
4 module LLVM_Extern_IR_Intrinsics_Gen {}
5 module LLVM_Extern_IR_Intrinsics_Enum {}
6 module LLVM_Extern_Utils_DataTypes {}
7 module LLVM_Extern_TargetParser_Gen {}
/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/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/openpam/lib/libpam/
H A Dopenpam_load.c55 pam_module_t *module; in openpam_load_module() local
57 module = openpam_dynamic(modulename); in openpam_load_module()
59 (module == NULL) ? "no" : "using", modulename); in openpam_load_module()
63 if (module == NULL && strchr(modulename, '/') == NULL) { in openpam_load_module()
64 module = openpam_static(modulename); in openpam_load_module()
66 (module == NULL) ? "no" : "using", modulename); in openpam_load_module()
69 if (module == NULL) { in openpam_load_module()
73 return (module); in openpam_load_module()
83 openpam_release_module(pam_module_t *module) in openpam_release_module() argument
86 if (module == NULL) in openpam_release_module()
[all …]
H A Dopenpam_dynamic.c123 pam_module_t *module; in try_module() local
126 if ((module = calloc(1, sizeof *module)) == NULL || in try_module()
127 (module->path = strdup(modpath)) == NULL || in try_module()
128 (module->dlh = try_dlopen(modpath)) == NULL) in try_module()
130 dlmodule = dlsym(module->dlh, "_pam_module"); in try_module()
133 module->func[i] = dlmodule->func[i]; in try_module()
135 module->func[i] = (pam_func_t)dlfunc(module->dlh, in try_module()
147 if (module->func[i] == NULL) in try_module()
153 return (module); in try_module()
156 if (module != NULL) { in try_module()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_markup.cpp76 static bool ModulesEq(const LoadedModule &module, in ModulesEq() argument
78 return module.base_address() == renderedModule.base_address && in ModulesEq()
79 internal_memcmp(module.uuid(), renderedModule.uuid, in ModulesEq()
80 module.uuid_size()) == 0 && in ModulesEq()
81 internal_strcmp(module.full_name(), renderedModule.full_name) == 0; in ModulesEq()
85 const LoadedModule &module, in ModuleHasBeenRendered() argument
88 if (ModulesEq(module, renderedModule)) in ModuleHasBeenRendered()
95 const LoadedModule &module, uptr moduleId) { in RenderModule() argument
97 for (uptr i = 0; i < module.uuid_size(); i++) in RenderModule()
98 buildIdBuffer.AppendF("%02x", module.uuid()[i]); in RenderModule()
[all …]
/freebsd/sys/contrib/openzfs/lib/libzfs/
H A DMakefile.am37 module/zcommon/cityhash.c \
38 module/zcommon/zfeature_common.c \
39 module/zcommon/zfs_comutil.c \
40 module/zcommon/zfs_deleg.c \
41 module/zcommon/zfs_fletcher.c \
42 module/zcommon/zfs_fletcher_aarch64_neon.c \
43 module/zcommon/zfs_fletcher_avx512.c \
44 module/zcommon/zfs_fletcher_intel.c \
45 module/zcommon/zfs_fletcher_sse.c \
46 module/zcommon/zfs_fletcher_superscalar.c \
[all …]
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStatistics.cpp52 json::Object module; in ToJSON() local
53 EmplaceSafeString(module, "path", path); in ToJSON()
54 EmplaceSafeString(module, "uuid", uuid); in ToJSON()
55 EmplaceSafeString(module, "triple", triple); in ToJSON()
56 module.try_emplace("identifier", identifier); in ToJSON()
57 module.try_emplace("symbolTableParseTime", symtab_parse_time); in ToJSON()
58 module.try_emplace("symbolTableIndexTime", symtab_index_time); in ToJSON()
59 module.try_emplace("symbolTableLoadedFromCache", symtab_loaded_from_cache); in ToJSON()
60 module.try_emplace("symbolTableSavedToCache", symtab_saved_to_cache); in ToJSON()
61 module.try_emplace("debugInfoParseTime", debug_parse_time); in ToJSON()
[all …]
/freebsd/sys/contrib/openzfs/rpm/generic/
H A Dzfs-dkms.spec.in10 %define module @PACKAGE@
13 Name: %{module}-dkms
17 Summary: Kernel module(s) (dkms)
22 Source0: %{module}-%{version}.tar.gz
37 Provides: %{module}-kmod = %{version}
51 %setup -q -n %{module}-%{version}
54 %{mkconf} -n %{module} -v %{version} -f dkms.conf
61 cp -rf ${RPM_BUILD_DIR}/%{module}-%{version} $RPM_BUILD_ROOT/usr/src/
70 /usr/src/%{module}-%{version}
81 if [ -d ${dkms_root}/%{module} ]; then
[all …]
/freebsd/sys/contrib/openzfs/rpm/redhat/
H A Dzfs-dkms.spec.in10 %define module @PACKAGE@
13 Name: %{module}-dkms
17 Summary: Kernel module(s) (dkms)
22 Source0: %{module}-%{version}.tar.gz
37 Provides: %{module}-kmod = %{version}
51 %setup -q -n %{module}-%{version}
54 %{mkconf} -n %{module} -v %{version} -f dkms.conf
61 cp -rf ${RPM_BUILD_DIR}/%{module}-%{version} $RPM_BUILD_ROOT/usr/src/
70 /usr/src/%{module}-%{version}
81 if [ -d ${dkms_root}/%{module} ]; then
[all …]
/freebsd/crypto/openssl/crypto/objects/
H A Dobjects.pl52 $module = $1."-";
53 $module =~ s/\./_/g;
54 $module =~ s/-/_/g;
57 { $module = ""; }
62 $Cname = $module.$1;
92 if ($Cname ne "" && defined($ln{$module.$Cname}))
93 ….txt:$o:There's already an object with long name ",$ln{$module.$Cname}," on line ",$order{$module.…
99 if ($Cname ne "" && defined($sn{$module.$Cname}))
100 …txt:$o:There's already an object with short name ",$sn{$module.$Cname}," on line ",$order{$module.…
108 if ($Cname ne "" && defined($ln{$module.$Cname}))
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticSerializationKinds.td22 "%select{precompiled header|module file|AST file}1 '%2' was built"
30 "after modifying system headers, please delete the module cache at '%0'">;
45 def err_pch_modulecache_mismatch : Error<"PCH was compiled with module cache "
63 "module '%0' is defined in both '%1' and '%2'">, DefaultFatal;
65 "%select{PCH|module|AST}0 file '%1' not found%select{|: %3}2">, DefaultFatal;
67 "%select{PCH|module|AST}0 file '%1' is out of date and "
70 "file '%1' is not a valid precompiled %select{PCH|module|AST}0 file: %2">, DefaultFatal;
72 "imported by %select{|module '%2' in }1'%0'">;
74 "AST file '%0' was not built as a module">, DefaultFatal;
76 "module file '%0' is missing its top-level submodule">, DefaultFatal;
[all …]
/freebsd/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-kstat.c372 kstat_module_t *module = NULL; in kstat_find_module() local
374 list_for_each_entry(module, &kstat_module_list, ksm_module_list) { in kstat_find_module()
375 if (strncmp(name, module->ksm_name, KSTAT_STRLEN) == 0) in kstat_find_module()
376 return (module); in kstat_find_module()
385 kstat_module_t *module; in kstat_create_module() local
392 module = kmem_alloc(sizeof (kstat_module_t), KM_SLEEP); in kstat_create_module()
393 module->ksm_proc = pde; in kstat_create_module()
394 strlcpy(module->ksm_name, name, KSTAT_STRLEN); in kstat_create_module()
395 INIT_LIST_HEAD(&module->ksm_kstat_list); in kstat_create_module()
396 list_add_tail(&module->ksm_module_list, &kstat_module_list); in kstat_create_module()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.cpp108 static DWARFExpression MakeLocationExpressionInternal(lldb::ModuleSP module, in MakeLocationExpressionInternal() argument
110 const ArchSpec &architecture = module->GetArchitecture(); in MakeLocationExpressionInternal()
134 std::optional<int32_t> relative_offset, lldb::ModuleSP module) { in MakeRegisterBasedLocationExpressionInternal() argument
135 uint32_t reg_num = GetRegisterNumber(module->GetArchitecture().GetMachine(), in MakeRegisterBasedLocationExpressionInternal()
159 lldb::ModuleSP module) { in MakeRegisterBasedLocationExpressionInternal() argument
161 module, [&](Stream &stream, RegisterKind &register_kind) -> bool { in MakeRegisterBasedLocationExpressionInternal()
163 stream, reg, register_kind, relative_offset, module); in MakeRegisterBasedLocationExpressionInternal()
168 llvm::codeview::RegisterId reg, lldb::ModuleSP module) { in MakeEnregisteredLocationExpression() argument
169 return MakeRegisterBasedLocationExpressionInternal(reg, std::nullopt, module); in MakeEnregisteredLocationExpression()
173 llvm::codeview::RegisterId reg, int32_t offset, lldb::ModuleSP module) { in MakeRegRelLocationExpression() argument
185 MakeVFrameRelLocationExpression(llvm::StringRef fpo_program,int32_t offset,lldb::ModuleSP module) MakeVFrameRelLocationExpression() argument
205 MakeGlobalLocationExpression(uint16_t section,uint32_t offset,ModuleSP module) MakeGlobalLocationExpression() argument
229 MakeConstantLocationExpression(TypeIndex underlying_ti,TpiStream & tpi,const llvm::APSInt & constant,ModuleSP module) MakeConstantLocationExpression() argument
264 MakeEnregisteredLocationExpressionForComposite(const std::map<uint64_t,MemberValLocation> & offset_to_location,std::map<uint64_t,size_t> & offset_to_size,size_t total_size,lldb::ModuleSP module) MakeEnregisteredLocationExpressionForComposite() argument
[all...]
/freebsd/sys/sys/
H A Dmodule.h50 typedef struct module *module_t;
119 #define MODULE_DEPEND(module, mdepend, vmin, vpref, vmax) \ argument
120 static struct mod_depend _##module##_depend_on_##mdepend \
126 MODULE_METADATA(_md_##module##_on_##mdepend, MDT_DEPEND, \
127 &_##module##_depend_on_##mdepend, #mdepend)
144 SYSINIT(name##module, sub, order, module_register_init, &data); \
165 #define MODULE_VERSION_CONCAT(module, version) _##module##_version argument
166 #define MODULE_VERSION(module, version) \ argument
167 static struct mod_version MODULE_VERSION_CONCAT(module, version)\
171 MODULE_METADATA(MODULE_VERSION_CONCAT(module, version), MDT_VERSION,\
[all …]
/freebsd/sys/contrib/openzfs/
H A DMakefile.am32 CPPCHECKDIRS += module
34 SUBDIRS += module subdir
43 dist_noinst_DATA += module/lua/README.zfs module/os/linux/spl/README.md
46 dist_noinst_DATA += module/icp/algs/skein/THIRDPARTYLICENSE
47 dist_noinst_DATA += module/icp/algs/skein/THIRDPARTYLICENSE.descrip
48 dist_noinst_DATA += module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.gladman
49 dist_noinst_DATA += module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.gladman.descrip
50 dist_noinst_DATA += module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.openssl
51 dist_noinst_DATA += module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.openssl.descrip
52 dist_noinst_DATA += module/icp/asm-x86_64/modes/THIRDPARTYLICENSE.cryptogams
[all …]
/freebsd/stand/forth/
H A Dloader.4th229 \ show, enable, disable, toggle module loading. They all take module from
232 : set-module-flag ( module_addr val -- ) \ set and print flag
233 over module.flag !
234 dup module.name strtype
235 module.flag @ if ." will be loaded" else ." will not be loaded" then cr
238 : enable-module find-module ?dup if true set-module-flag then ;
240 : disable-module find-module ?dup if false set-module-flag then ;
242 : toggle-module find-module ?dup if dup module.flag @ 0= set-module-flag then ;
244 \ ***** show-module
246 \ Show loading information about a module.
[all …]
/freebsd/sys/contrib/device-tree/Bindings/bus/
H A Dti-sysc.txt1 Texas Instruments sysc interconnect target module wrapper binding
3 Texas Instruments SoCs can have a generic interconnect target module
6 is mostly used for interaction between module and PRCM. It participates
10 Each interconnect target module can have one or more devices connected to
12 module clocks, idle modes and interconnect level resets for the module.
16 target module and typically are named REVISION, SYSCONFIG and SYSSTATUS.
44 target module in question such as revision, sysc and syss
47 interconnect target module in question such as
50 - ranges shall contain the interconnect target module IO range
52 by the interconnect target module, the ranges may include
[all …]
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBTargetExtensions.i59 module = self.sbtarget.GetModuleAtIndex(idx)
60 if module.file.basename == key:
61 return module
64 module = self.sbtarget.GetModuleAtIndex(idx)
65 if module.file.fullpath == key:
66 return module
72 module = self.sbtarget.GetModuleAtIndex(idx)
73 if module.uuid == the_uuid:
74 return module
79 module = self.sbtarget.GetModuleAtIndex(idx)
[all …]

12345678910>>...58