Home
last modified time | relevance | path

Searched full:extensions (Results 1 – 25 of 1524) sorted by relevance

12345678910>>...61

/openbmc/linux/arch/arm64/crypto/
H A DKconfig6 tristate "Hash functions: GHASH (ARMv8 Crypto Extensions)"
16 - ARMv8 Crypto Extensions
26 - NEON (Advanced SIMD) extensions
37 - NEON (Advanced SIMD) extensions
40 tristate "Hash functions: SHA-1 (ARMv8 Crypto Extensions)"
48 - ARMv8 Crypto Extensions
59 tristate "Hash functions: SHA-224 and SHA-256 (ARMv8 Crypto Extensions)"
67 - ARMv8 Crypto Extensions
78 tristate "Hash functions: SHA-384 and SHA-512 (ARMv8 Crypto Extensions)"
86 - ARMv8 Crypto Extensions
[all …]
/openbmc/linux/Documentation/riscv/
H A Duabi.rst14 #. Single-letter extensions come first, in canonical order.
17 #. All multi-letter extensions will be separated from other extensions by an
20 #. Additional standard extensions (starting with 'Z') will be sorted after
21 single-letter extensions and before any higher-privileged extensions.
23 #. For additional standard extensions, the first letter following the 'Z'
25 extension category. If multiple 'Z' extensions are named, they will be
29 #. Standard supervisor-level extensions (starting with 'S') will be listed
30 after standard unprivileged extensions. If multiple supervisor-level
31 extensions are listed, they will be ordered alphabetically.
33 #. Standard machine-level extensions (starting with 'Zxm') will be listed
[all …]
H A Dpatch-acceptance.rst39 We'll only accept patches for new modules or extensions if the
40 specifications for those modules or extensions are listed as being
45 that contain code for any draft extensions that they wish.)
48 their own custom extensions. These custom extensions aren't required
52 RISC-V extensions, we'll only consider patches for extensions that either:
59 code for any custom extensions that they wish.)
/openbmc/linux/arch/x86/crypto/
H A DKconfig67 - AVX (Advanced Vector Extensions)
78 - AVX2 (Advanced Vector Extensions 2)
93 - AVX (Advanced Vector Extensions)
111 - AVX (Advanced Vector Extensions)
141 - SSE2 (Streaming SIMD Extensions 2)
157 - SSE2 (Streaming SIMD Extensions 2)
174 - AVX (Advanced Vector Extensions)
187 - AVX2 (Advanced Vector Extensions 2)
204 - AVX (Advanced Vector Extensions)
226 - AVX2 (Advanced Vector Extensions 2)
[all …]
/openbmc/phosphor-logging/
H A Dextensions.hpp81 Extensions e{func}; \
94 Extensions e{Extensions::DefaultErrorCaps::disable}; \
98 * @class Extensions
100 * This class manages any error log extensions. Extensions can register
106 class Extensions class
109 Extensions() = delete;
110 ~Extensions() = default;
111 Extensions(const Extensions&) = delete;
112 Extensions& operator=(const Extensions&) = delete;
113 Extensions(Extensions&&) = delete;
[all …]
H A Dextensions.cpp1 #include "extensions.hpp"
8 StartupFunctions& Extensions::getStartupFunctions() in getStartupFunctions()
14 CreateFunctions& Extensions::getCreateFunctions() in getCreateFunctions()
20 DeleteFunctions& Extensions::getDeleteFunctions() in getDeleteFunctions()
26 DeleteProhibitedFunctions& Extensions::getDeleteProhibitedFunctions() in getDeleteProhibitedFunctions()
32 LogIDsWithHwIsolationFunctions& Extensions::getLogIDWithHwIsolationFunctions() in getLogIDWithHwIsolationFunctions()
38 Extensions::DefaultErrorCaps& Extensions::getDefaultErrorCaps() in getDefaultErrorCaps()
/openbmc/linux/arch/arm/crypto/
H A DKconfig14 - NEON (Advanced SIMD) extensions
17 tristate "Hash functions: GHASH (PMULL/NEON/ARMv8 Crypto Extensions)"
29 - NEON (Advanced SIMD) extensions
30 - ARMv8 Crypto Extensions
34 that is part of the ARMv8 Crypto Extensions, or a slower variant that
45 - NEON (Advanced SIMD) extensions
55 - NEON (Advanced SIMD) extensions
78 - NEON (Advanced SIMD) extensions
82 Crypto Extensions, typically this BLAKE2b implementation is
105 - NEON (Advanced SIMD) extensions
[all …]
/openbmc/openpower-pnor-code-mgmt/test/
H A Dtest_functions.cpp24 std::vector<std::string> compatibleSystem{"system-foo"s}, extensions; in TEST() local
27 extensionMap, compatibleSystem, extensions); in TEST()
29 EXPECT_EQ(extensions, std::vector<std::string>{".EXT"s}); in TEST()
38 extensions{"foo"s}; in TEST() local
41 extensionMap, compatibleSystem, extensions); in TEST()
43 EXPECT_EQ(extensions, std::vector<std::string>{"foo"s}); in TEST()
53 extensions{"foo"s}; in TEST() local
56 extensionMap, compatibleSystem, extensions); in TEST()
58 EXPECT_EQ(extensions, std::vector<std::string>{".FOO"s}); in TEST()
65 extensions{"foo"s}; in TEST() local
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-filter/ebtables/ebtables-2.0.11/
H A D0010-Adjust-header-include-sequence.patch13 extensions/ebt_among.c | 2 +-
14 extensions/ebt_arpreply.c | 2 +-
15 extensions/ebt_nat.c | 2 +-
19 diff --git a/extensions/ebt_among.c b/extensions/ebt_among.c
21 --- a/extensions/ebt_among.c
22 +++ b/extensions/ebt_among.c
33 diff --git a/extensions/ebt_arpreply.c b/extensions/ebt_arpreply.c
35 --- a/extensions/ebt_arpreply.c
36 +++ b/extensions/ebt_arpreply.c
47 diff --git a/extensions/ebt_nat.c b/extensions/ebt_nat.c
[all …]
/openbmc/phosphor-debug-collector/dump-extensions/openpower-dumps/
H A Dmeson.build4 'input': 'dump-extensions/openpower-dumps/clear_hostdumps_poweroff.service',
9 'dump-extensions/openpower-dumps/dump-extensions.cpp',
10 'dump-extensions/openpower-dumps/dump_manager_system.cpp',
11 'dump-extensions/openpower-dumps/system_dump_entry.cpp',
12 'dump-extensions/openpower-dumps/dump_manager_resource.cpp',
13 'dump-extensions/openpower-dumps/resource_dump_entry.cpp',
14 'dump-extensions/openpower-dumps/op_dump_util.cpp',
/openbmc/phosphor-logging/test/
H A Dextensions_test.cpp2 #include "extensions.hpp"
68 EXPECT_EQ(Extensions::getStartupFunctions().size(), 2); in REGISTER_EXTENSION_FUNCTION()
69 for (auto& s : Extensions::getStartupFunctions()) in REGISTER_EXTENSION_FUNCTION()
77 EXPECT_EQ(Extensions::getCreateFunctions().size(), 2); in REGISTER_EXTENSION_FUNCTION()
78 for (auto& c : Extensions::getCreateFunctions()) in REGISTER_EXTENSION_FUNCTION()
83 EXPECT_EQ(Extensions::getDeleteFunctions().size(), 2); in REGISTER_EXTENSION_FUNCTION()
84 for (auto& d : Extensions::getDeleteFunctions()) in REGISTER_EXTENSION_FUNCTION()
89 EXPECT_EQ(Extensions::getDeleteProhibitedFunctions().size(), 2); in REGISTER_EXTENSION_FUNCTION()
90 for (auto& p : Extensions::getDeleteProhibitedFunctions()) in REGISTER_EXTENSION_FUNCTION()
97 EXPECT_EQ(Extensions::getLogIDWithHwIsolationFunctions().size(), 2); in REGISTER_EXTENSION_FUNCTION()
[all …]
/openbmc/linux/drivers/gpu/drm/rockchip/
H A DKconfig38 bool "Rockchip specific extensions for Analogix DP driver"
43 This selects support for Rockchip SoC specific extensions
53 This selects support for Rockchip SoC specific extensions
59 bool "Rockchip specific extensions for Synopsys DW HDMI"
61 This selects support for Rockchip SoC specific extensions
67 bool "Rockchip specific extensions for Synopsys DW MIPI DSI"
70 This selects support for Rockchip SoC specific extensions
76 bool "Rockchip specific extensions for Innosilicon HDMI"
78 This selects support for Rockchip SoC specific extensions
103 bool "Rockchip specific extensions for RK3066 HDMI"
[all …]
/openbmc/qemu/include/hw/intc/
H A Darm_gic.h26 * + QOM property "has-security-extensions": set true if the GIC should
27 * implement the security extensions
28 * + QOM property "has-virtualization-extensions": set true if the GIC should
29 * implement the virtualization extensions
42 * - VIRQ for CPU 0 (exists even if virt extensions not present)
43 * - VIRQ for CPU 1 (exists even if virt extensions not present)
45 * - VFIQ for CPU 0 (exists even if virt extensions not present)
46 * - VFIQ for CPU 1 (exists even if virt extensions not present)
48 * - maintenance IRQ for CPU i/f 0 (only if virt extensions present)
49 * - maintenance IRQ for CPU i/f 1 (only if virt extensions present)
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/arptables/arptables/
H A D0001-Use-ARPCFLAGS-for-package-specific-compiler-flags.patch14 extensions/Makefile | 4 ++++
32 @@ -24,13 +22,13 @@ include extensions/Makefile
49 diff --git a/extensions/Makefile b/extensions/Makefile
51 --- a/extensions/Makefile
52 +++ b/extensions/Makefile
53 @@ -5,3 +5,7 @@ EXT_OBJS+=$(foreach T,$(EXT_FUNC), extensions/arpt_$(T).o)
55 extensions/ebt_%.o: extensions/arpt_%.c include/arptables.h include/arptables_common.h
59 +extensions/arpt_%.o: extensions/arpt_%.c include/arptables.h include/arptables_common.h
/openbmc/openbmc/poky/meta/files/common-licenses/
H A DRPL-1.19 … for execution of same (collectively defined as Extensions) that You Deploy by Deploying Your Exte…
17Extensions to the Licensed Software consistent with the rights granted by this License, provided t…
23 a. Charge for the Source Code to the Licensed Software, or Your Extensions, other than a nominal fe…
35 …ode and in a text file titled "CHANGES" distributed with the Licensed Software and Your Extensions.
37 b. Make the Source Code for any Extensions You Deploy available in a timely fashion via an Electron…
39 …ility of Source Code to Your Extensions in a timely fashion and include in such notice a brief des…
41 …, reproduce, display, perform, modify, sublicense, and distribute Your Extensions, in any form, un…
55 …1.5 "Extensions" means any Modifications, Derivative Works, or Required Components as those terms …
59 …pursuant to this License. Licensed Software also includes all previous Extensions from any Contrib…
73 …or Your Extensions by means of a computer network to one or more computers for purposes of executi…
[all …]
H A DRPL-1.526 extensions, and meaningful and valuable derivatives were not consistently
33 Regarding deployment, under the RPL your changes, bug fixes, extensions, etc.
77 1.5 "Extensions" means any Modifications, Derivative Works, or Required
85 Licensed Software also includes all previous Extensions from any Contributor
114 1.14 "Serve" means to deliver Licensed Software and/or Your Extensions by
116 of Licensed Software and/or Your Extensions.
123 Licensed Software and/or Your Extensions, including all modules contained
127 version of the Licensed Software or Your Extensions.
142 Extensions created by a Contributor. These actions are prohibited by law if
158 Licensed Software and Your Extensions in both Source Code form or as an
[all …]
/openbmc/linux/Documentation/devicetree/bindings/riscv/
H A Dextensions.yaml4 $id: http://devicetree.org/schemas/riscv/extensions.yaml#
7 title: RISC-V ISA extensions
15 RISC-V has a large number of extensions, some of which are "standard"
16 extensions, meaning they are ratified by RISC-V International, and others
17 are "vendor" extensions.
23 The properties for standard extensions therefore map to their originally
24 ratified states, with the exception of the I, Zicntr & Zihpm extensions.
44 Zicntr, Zicsr, Zifencei and Zihpm extensions and thus "i"
62 riscv,isa-extensions:
65 description: Extensions supported by the hart.
[all …]
/openbmc/openpower-pnor-code-mgmt/
H A Dfunctions.cpp89 * @brief Get file extensions for Compatible
94 * different filename extensions. getExtensionsForIbmCompatibleSystem maintains
97 * extensions.
100 * the extensions parameter is reset with the map entry. If no mapping is found
101 * getExtensionsForIbmCompatibleSystem returns false and extensions is
106 * extensions.
109 * @param[out] extensions the host firmware blob file extensions
115 std::vector<std::string>& extensions) in getExtensionsForIbmCompatibleSystem() argument
122 extensions = extensionMapIterator->second; in getExtensionsForIbmCompatibleSystem()
171 * extensions argument to find host firmware blob files that require a
[all …]
/openbmc/openpower-proc-control/
H A Dmeson.build125 'extensions/phal/common_utils.cpp',
126 'extensions/phal/pdbg_utils.cpp',
127 'extensions/phal/create_pel.cpp',
128 'extensions/phal/phal_error.cpp',
129 'extensions/phal/dump_utils.cpp',
229 'extensions/phal/devtree_export.cpp',
230 'extensions/phal/fw_update_watch.cpp',
231 'extensions/phal/pdbg_utils.cpp',
232 'extensions/phal/create_pel.cpp',
249 'extensions/phal/clock_logger_main.cpp',
[all …]
/openbmc/linux/arch/riscv/kernel/
H A Dcpufeature.c40 /* Per-cpu ISA extensions. */
125 * 1. All multi-letter extensions must be separated from other extensions by an
128 * 2. Additional standard extensions (starting with 'Z') must be sorted after
129 * single-letter extensions and before any higher-privileged extensions.
133 * If multiple 'Z' extensions are named, they must be ordered first by
136 * 3. Standard supervisor-level extensions (starting with 'S') must be listed
137 * after standard unprivileged extensions. If multiple supervisor-level
138 * extensions are listed, they must be ordered alphabetically.
140 * 4. Standard machine-level extensions (starting with 'Zxm') must be listed
141 * after any lower-privileged, standard extensions. If multiple
[all …]
/openbmc/linux/Documentation/gpu/rfc/
H A Di915_vm_bind.h152 * @extensions: Zero-terminated chain of extensions.
154 * For future extensions. See struct i915_user_extension.
156 __u64 extensions; member
210 * @extensions: Zero-terminated chain of extensions.
212 * For future extensions. See struct i915_user_extension.
214 __u64 extensions; member
271 * @extensions: Zero-terminated chain of extensions.
273 * For future extensions. See struct i915_user_extension.
275 __u64 extensions; member
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-protocols/freediameter/files/
H A D0001-tests-use-EXTENSIONS_DIR.patch50 /* Find all extensions which have been compiled along the test */
51 - TRACE_DEBUG(INFO, "Loading from: '%s'", BUILD_DIR "/extensions");
52 - CHECK( 0, (dir = opendir (BUILD_DIR "/extensions")) == NULL ? 1 : 0 );
53 - pathlen = snprintf(fullname, sizeof(fullname), BUILD_DIR "/extensions/");
80 /* Find all extensions which have been compiled along the test */
81 - LOG_D("Loading %s*.fdx from: '%s'", BUILD_DIR "/extensions", prefix ?: "");
82 - CHECK( 0, (dir = opendir (BUILD_DIR "/extensions")) == NULL ? 1 : 0 );
83 - pathlen = snprintf(fullname, sizeof(fullname), BUILD_DIR "/extensions/");
/openbmc/qemu/ui/
H A Dx_keymap.c40 char **extensions = XListExtensions(dpy, &nextensions); in check_for_xquartz() local
41 for (i = 0 ; extensions != NULL && i < nextensions ; i++) { in check_for_xquartz()
42 trace_xkeymap_extension(extensions[i]); in check_for_xquartz()
43 if (strcmp(extensions[i], "Apple-WM") == 0 || in check_for_xquartz()
44 strcmp(extensions[i], "Apple-DRI") == 0) { in check_for_xquartz()
48 if (extensions) { in check_for_xquartz()
49 XFreeExtensionList(extensions); in check_for_xquartz()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/minifi-cpp/files/
H A D0005-Pass-noline-flag-to-flex.patch13 extensions/expression-language/CMakeLists.txt | 2 +-
16 diff --git a/extensions/expression-language/CMakeLists.txt b/extensions/expression-language/CMakeLi…
18 --- a/extensions/expression-language/CMakeLists.txt
19 +++ b/extensions/expression-language/CMakeLists.txt
/openbmc/linux/Documentation/devicetree/bindings/mmc/
H A Dk3-dw-mshc.txt1 * Hisilicon specific extensions to the Synopsys Designware Mobile
10 extensions to the Synopsys Designware Mobile Storage Host Controller.
15 - "hisilicon,hi3660-dw-mshc": for controllers with hi3660 specific extensions.
17 with hi3670 specific extensions.
18 - "hisilicon,hi4511-dw-mshc": for controllers with hi4511 specific extensions.
19 - "hisilicon,hi6220-dw-mshc": for controllers with hi6220 specific extensions.

12345678910>>...61