Home
last modified time | relevance | path

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

12345678910>>...59

/freebsd/sys/contrib/openzfs/lib/libzpool/
H A DMakefile.am17 module/lua/lapi.c \
20 module/lua/lcode.c \
25 module/lua/ldo.c \
26 module/lua/lfunc.c \
27 module/lua/lgc.c \
28 module/lua/llex.c \
29 module/lua/lmem.c \
38 module/lua/ltm.c \
39 module/lua/lvm.c \
40 module/lua/lzio.c \
[all …]
/freebsd/lib/libc++/
H A Dmodule.modulemap2 module std_algorithm [system] {
6 module std_any [system] {
10 module std_array [system] {
14 module std_atomic [system] {
22 module std_bit [system] {
520 module iterator {
524 module memory {
532 module simd {
550 module utility {
554 module __config {
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dmodule.modulemap.in2 module std_algorithm [system] {
6 module std_any [system] {
10 module std_array [system] {
14 module std_atomic [system] {
22 module std_bit [system] {
520 module iterator {
524 module memory {
532 module simd {
550 module utility {
554 module __config {
[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 \
21 module/icp/algs/modes/cbc.c \
24 module/icp/algs/modes/gcm.c \
25 module/icp/algs/modes/ctr.c \
35 module/icp/io/aes.c \
36 module/icp/io/sha2_mod.c \
37 module/icp/io/skein_mod.c \
[all …]
/freebsd/contrib/llvm-project/lldb/include/
H A Dmodule.modulemap2 module lldb_API {
8 module * { export * }
11 module lldb_Host {
56 module common {
68 module * { export * }
72 module lldb_Wrapper {
81 module lldb_Core {
109 module lldb_Symbol {
115 module lldb_Target {
125 module lldb_Utility {
[all …]
/freebsd/contrib/llvm-project/llvm/include/
H A Dmodule.modulemap1 module LLVM_C {
3 module * { export * }
6 module LLVM_Analysis {
9 module * { export * }
26 module LLT {
29 module MVT {
31 extern module LLVM_Extern_CodeGenTypes_Gen "module.extern.modulemap"
40 module CodeGen {
114 extern module LLVM_Extern_Config_Def "module.extern.modulemap"
241 module Pass {
[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 -------------------------===
11 explicit module altivec {
16 explicit module arm {
19 explicit module acle {
24 explicit module neon {
31 explicit module sve {
38 explicit module intel {
81 explicit module mmx {
85 explicit module sse {
163 // float.h will not be in the _Builtin_float module (that module
[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 * }
35 module Clang_Basic {
90 module * { export * }
122 module Clang_Driver {
185 module Clang_Testing {
[all …]
/freebsd/sys/contrib/openzfs/lib/libzstd/
H A DMakefile.am9 module/zstd/lib/common/entropy_common.c \
10 module/zstd/lib/common/error_private.c \
11 module/zstd/lib/common/fse_decompress.c \
12 module/zstd/lib/common/pool.c \
13 module/zstd/lib/common/zstd_common.c \
15 module/zstd/lib/compress/hist.c \
22 module/zstd/lib/compress/zstd_fast.c \
23 module/zstd/lib/compress/zstd_lazy.c \
24 module/zstd/lib/compress/zstd_ldm.c \
25 module/zstd/lib/compress/zstd_opt.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()
64 module = openpam_static(modulename); in openpam_load_module()
69 if (module == NULL) { in openpam_load_module()
73 return (module); in openpam_load_module()
86 if (module == NULL) in openpam_release_module()
88 if (module->dlh == NULL) in openpam_release_module()
91 dlclose(module->dlh); in openpam_release_module()
93 FREE(module->path); in openpam_release_module()
94 FREE(module); 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()
135 module->func[i] = (pam_func_t)dlfunc(module->dlh, in try_module()
153 return (module); in try_module()
156 if (module != NULL) { in try_module()
158 dlclose(module->dlh); in try_module()
160 FREE(module->path); in try_module()
161 FREE(module); in try_module()
179 pam_module_t *module; in openpam_dynamic() local
245 return (module); in openpam_dynamic()
[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
85 const LoadedModule &module, in ModuleHasBeenRendered() argument
88 if (ModulesEq(module, renderedModule)) in ModuleHasBeenRendered()
97 for (uptr i = 0; i < module.uuid_size(); i++) in RenderModule()
110 for (const auto &range : module.ranges()) { in RenderMmaps()
137 for (const auto &module : modules) { in RenderContext() local
145 RenderModule(buffer, module, moduleId); in RenderContext()
146 RenderMmaps(buffer, module, moduleId); in RenderContext()
149 internal_strdup(module.full_name()), in RenderContext()
150 module.base_address(), in RenderContext()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStatistics.cpp49 json::Object module; in ToJSON() local
50 EmplaceSafeString(module, "path", path); in ToJSON()
51 EmplaceSafeString(module, "uuid", uuid); in ToJSON()
52 EmplaceSafeString(module, "triple", triple); in ToJSON()
53 module.try_emplace("identifier", identifier); in ToJSON()
63 module.try_emplace("debugInfoIndexSavedToCache", in ToJSON()
66 module.try_emplace("debugInfoHadVariableErrors", in ToJSON()
68 module.try_emplace("debugInfoHadIncompleteTypes", in ToJSON()
91 return module; in ToJSON()
217 module_stat.identifier = (intptr_t)module; in ReportStatistics()
[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 \
44 module/zcommon/zfs_fletcher_intel.c \
45 module/zcommon/zfs_fletcher_sse.c \
48 module/zcommon/zfs_namecheck.c \
49 module/zcommon/zfs_prop.c \
50 module/zcommon/zpool_prop.c \
[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
51 %setup -q -n %{module}-%{version}
70 /usr/src/%{module}-%{version}
81 if [ -d ${dkms_root}/%{module} ]; then
82 cd ${dkms_root}/%{module}
100 if [ `dkms status -m %{module} -v "$otherver" | grep -c %{module}` -gt 0 ]; then
110 if [ `dkms status -m %{module} -v %{version} | grep -c %{module}` -gt 0 ]; 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
51 %setup -q -n %{module}-%{version}
70 /usr/src/%{module}-%{version}
81 if [ -d ${dkms_root}/%{module} ]; then
82 cd ${dkms_root}/%{module}
100 if [ `dkms status -m %{module} -v "$otherver" | grep -c %{module}` -gt 0 ]; then
110 if [ `dkms status -m %{module} -v %{version} | grep -c %{module}` -gt 0 ]; 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.…
109 ….txt:$o:There's already an object with long name ",$ln{$module.$Cname}," on line ",$order{$module.…
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticSerializationKinds.td62 "%select{PCH|module|AST}0 file '%1' is out of date and "
67 "imported by %select{|module '%2' in }1'%0'">;
69 "AST file '%0' was not built as a module">, DefaultFatal;
77 "importing module '%0'%select{| into '%3'}2 from '%1'">,
83 "is not defined in any loaded module map file; "
88 "module '%0' %select{in|imported by}4 AST file '%1' found in a different module map file"
94 "module '%0' %select{uses|does not use}1 additional module map '%2'"
95 "%select{| not}1 used when the module was built">;
124 "duplicate module file extension block name '%0'">,
128 "module file '%0' was validated as a system module and is now being imported "
[all …]
/freebsd/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-kstat.c372 kstat_module_t *module = NULL; in kstat_find_module() local
376 return (module); in kstat_find_module()
385 kstat_module_t *module; in kstat_create_module() local
393 module->ksm_proc = pde; in kstat_create_module()
398 return (module); in kstat_create_module()
572 kstat_module_t *module; in kstat_detect_collision() local
607 kstat_module_t *module; in kstat_proc_entry_install() local
615 if (module == NULL) { in kstat_proc_entry_install()
622 if (module == NULL) in kstat_proc_entry_install()
637 kpep->kpe_owner = module; in kstat_proc_entry_install()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.cpp110 const ArchSpec &architecture = module->GetArchitecture(); in MakeLocationExpressionInternal()
159 lldb::ModuleSP module) { in MakeRegisterBasedLocationExpressionInternal() argument
163 stream, reg, register_kind, relative_offset, module); in MakeRegisterBasedLocationExpressionInternal()
168 llvm::codeview::RegisterId reg, lldb::ModuleSP module) { in MakeEnregisteredLocationExpression() argument
205 uint16_t section, uint32_t offset, ModuleSP module) { in MakeGlobalLocationExpression() argument
207 assert(module); in MakeGlobalLocationExpression()
213 SectionList *section_list = module->GetSectionList(); in MakeGlobalLocationExpression()
229 ModuleSP module) { in MakeConstantLocationExpression() argument
230 const ArchSpec &architecture = module->GetArchitecture(); in MakeConstantLocationExpression()
264 lldb::ModuleSP module) { in MakeEnregisteredLocationExpressionForComposite() argument
[all …]
/freebsd/sys/contrib/device-tree/Bindings/bus/
H A Dti-sysc.yaml7 title: Texas Instruments interconnect target module
13 Texas Instruments SoCs can have a generic interconnect target module
22 module clocks, idle modes and interconnect level resets.
31 pattern: "^target-module(@[0-9a-f]+)?$"
58 Interconnect target module control registers consisting of
66 Interconnect target module control register names consisting
80 description: Target module power domain if available.
117 Target module reset bit in the RSTCTRL register if wired for the module.
125 "rstctrl" if only one reset bit is wired for the module.
170 description: Interconnect target module shall not be idled
[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
50 dist_noinst_DATA += module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.openssl
56 dist_noinst_DATA += module/os/linux/spl/THIRDPARTYLICENSE.gplv2
58 dist_noinst_DATA += module/zfs/THIRDPARTYLICENSE.cityhash
59 dist_noinst_DATA += module/zfs/THIRDPARTYLICENSE.cityhash.descrip
[all …]
/freebsd/stand/forth/
H A Dloader.4th229 \ show, enable, disable, toggle module loading. They all take module from
233 over module.flag !
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
248 : show-module ( <module> -- ) find-module ?dup if show-one-module then ;
276 s" enable-module" s" enable loading of a module" .?
277 s" disable-module" s" disable loading of a module" .?
278 s" toggle-module" s" toggle loading of a module" .?
[all …]

12345678910>>...59