Home
last modified time | relevance | path

Searched refs:prefix (Results 1 – 25 of 1723) sorted by relevance

12345678910>>...69

/openbmc/qemu/block/
H A Dcrypto.h54 #define BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_ALG(prefix) \ argument
56 .name = prefix BLOCK_CRYPTO_OPT_LUKS_CIPHER_ALG, \
61 #define BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_MODE(prefix) \ argument
63 .name = prefix BLOCK_CRYPTO_OPT_LUKS_CIPHER_MODE, \
68 #define BLOCK_CRYPTO_OPT_DEF_LUKS_IVGEN_ALG(prefix) \ argument
70 .name = prefix BLOCK_CRYPTO_OPT_LUKS_IVGEN_ALG, \
82 #define BLOCK_CRYPTO_OPT_DEF_LUKS_HASH_ALG(prefix) \ argument
84 .name = prefix BLOCK_CRYPTO_OPT_LUKS_HASH_ALG, \
89 #define BLOCK_CRYPTO_OPT_DEF_LUKS_ITER_TIME(prefix) \ argument
91 .name = prefix BLOCK_CRYPTO_OPT_LUKS_ITER_TIME, \
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-multimedia/webm/libvpx/
H A Dlibvpx-configure-support-blank-prefix.patch6 Fix configure to accept "--prefix=" (a blank prefix).
19 --prefix=*)
20 prefix="${optval}"
21 + # Distinguish between "prefix not set" and "prefix set to ''"
30 - prefix="${prefix:-/usr/local}"
33 + prefix=/usr/local
37 prefix="${prefix%/}"
39 libdir="${libdir:-${prefix}/lib}"
41 - if [ "${libdir#${prefix}}" = "${libdir}" ]; then
42 - die "Libdir ${libdir} must be a subdirectory of ${prefix}"
[all …]
/openbmc/linux/drivers/usb/gadget/function/
H A Df_mass_storage.h23 &prefix ## params.name ## _count, \
25 MODULE_PARM_DESC(prefix ## name, desc)
30 MODULE_PARM_DESC(prefix ## name, desc)
32 #define __FSG_MODULE_PARAMETERS(prefix, params) \ argument
35 _FSG_MODULE_PARAM_ARRAY(prefix, params, ro, bool, \
43 _FSG_MODULE_PARAM(prefix, params, luns, uint, \
45 _FSG_MODULE_PARAM(prefix, params, stall, bool, \
50 #define FSG_MODULE_PARAMETERS(prefix, params) \ argument
51 __FSG_MODULE_PARAMETERS(prefix, params); \
56 #define FSG_MODULE_PARAMETERS(prefix, params) \ argument
[all …]
/openbmc/linux/drivers/regulator/
H A Dmc13xxx.h56 [prefix ## _name] = { \
63 .id = prefix ## _name, \
66 .reg = prefix ## _reg, \
67 .enable_bit = prefix ## _reg ## _ ## _name ## EN, \
68 .vsel_reg = prefix ## _vsel_reg, \
74 [prefix ## _name] = { \
81 .id = prefix ## _name, \
84 .reg = prefix ## _reg, \
89 [prefix ## _name] = { \
96 .id = prefix ## _name, \
[all …]
/openbmc/linux/drivers/firmware/broadcom/
H A Dbcm47xx_sprom.c39 if (prefix && postfix) in create_key()
41 else if (prefix) in create_key()
109 prefix, name, buf, err); in NVRAM_READ_VAL()
130 prefix, name, buf, err); in nvram_read_leddc()
191 const char *pre = prefix; in bcm47xx_sprom_fill_auto()
596 char prefix[10]; in bcm47xx_get_sprom_ssb() local
604 snprintf(prefix, sizeof(prefix), "pci/%u/%u/", in bcm47xx_get_sprom_ssb()
654 char *prefix; in bcm47xx_get_sprom_bcma() local
670 prefix = buf; in bcm47xx_get_sprom_bcma()
678 prefix = buf; in bcm47xx_get_sprom_bcma()
[all …]
/openbmc/qemu/scripts/qapi/
H A Dmain.py24 def invalid_prefix_char(prefix: str) -> Optional[str]:
26 if match.end() != len(prefix):
27 return prefix[match.end()]
33 prefix: str,
48 assert invalid_prefix_char(prefix) is None
51 gen_types(schema, output_dir, prefix, builtins)
52 gen_visit(schema, output_dir, prefix, builtins)
54 gen_events(schema, output_dir, prefix)
55 gen_introspect(schema, output_dir, prefix, unmask)
87 funny_char = invalid_prefix_char(args.prefix)
[all …]
/openbmc/linux/include/linux/
H A Dbtf_ids.h51 #define __ID(prefix) \ argument
52 __PASTE(__PASTE(prefix, __COUNTER__), __LINE__)
58 #define BTF_ID(prefix, name) \ argument
61 #define ____BTF_ID_FLAGS(prefix, name, flags) \ argument
64 ____BTF_ID_FLAGS(prefix, name, flags)
65 #define BTF_ID_FLAGS(prefix, name, ...) \ argument
66 __BTF_ID_FLAGS(prefix, name, ##__VA_ARGS__, 0)
102 BTF_ID(prefix, typename)
105 BTF_ID(prefix, typename)
208 #define BTF_ID(prefix, name) argument
[all …]
/openbmc/bmcweb/redfish-core/include/utils/
H A Dip_utils.hpp55 uint8_t prefix = 0; in ipv4VerifyIpAndGetBitcount() local
71 prefix += 8; in ipv4VerifyIpAndGetBitcount()
74 prefix += 7; in ipv4VerifyIpAndGetBitcount()
78 prefix += 6; in ipv4VerifyIpAndGetBitcount()
82 prefix += 5; in ipv4VerifyIpAndGetBitcount()
86 prefix += 4; in ipv4VerifyIpAndGetBitcount()
90 prefix += 3; in ipv4VerifyIpAndGetBitcount()
94 prefix += 2; in ipv4VerifyIpAndGetBitcount()
98 prefix += 1; in ipv4VerifyIpAndGetBitcount()
109 *prefixLength = prefix; in ipv4VerifyIpAndGetBitcount()
/openbmc/openbmc/poky/meta/recipes-devtools/python/python3-setuptools/
H A D0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch5 prefix to target sysroot
11 meta/recipes-devtools/python/python3/12-distutils-prefix-is-inside-staging-area.patch
26 @@ -119,6 +119,8 @@ def get_python_inc(plat_specific=0, prefix=None):
32 resolved_prefix = prefix if prefix is not None else default_prefix
37 early_prefix = prefix
39 - if prefix is None:
44 + if prefix is None and os.environ.get('STAGING_LIBDIR', ""):
45 + prefix = os.environ['STAGING_LIBDIR'].rstrip(lib_basename)
46 + elif prefix is None:
48 prefix = plat_specific and BASE_EXEC_PREFIX or BASE_PREFIX
[all …]
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dscons.bbclass18 …${STAGING_BINDIR_NATIVE}/scons --directory=${S} --clean PREFIX=${prefix} prefix=${prefix} ${EXTRA_…
27 …${STAGING_BINDIR_NATIVE}/scons --directory=${S} ${PARALLEL_MAKE} PREFIX=${prefix} prefix=${prefix}…
32 …INDIR_NATIVE}/scons --directory=${S} install_root=${D}${prefix} PREFIX=${prefix} prefix=${prefix} …
/openbmc/qemu/tests/tcg/xtensa/
H A Dtest_sar.S5 .macro test_sar prefix, imm
6 \prefix\()_set \imm
7 \prefix\()_ver \imm
10 .macro tests_sar prefix
11 test_sar \prefix, 0
12 test_sar \prefix, 1
13 test_sar \prefix, 2
14 test_sar \prefix, 3
15 test_sar \prefix, 0x1f
16 test_sar \prefix, 0x20
[all …]
H A Dtest_shift.S7 \prefix\()_ver \dst, \v, \imm
10 .macro test_shift_sd prefix, v, imm
15 .macro tests_imm_shift prefix, v
16 test_shift_sd \prefix, \v, 1
17 test_shift_sd \prefix, \v, 2
18 test_shift_sd \prefix, \v, 7
19 test_shift_sd \prefix, \v, 8
20 test_shift_sd \prefix, \v, 15
25 .macro tests_shift prefix, v
26 test_shift_sd \prefix, \v, 0
[all …]
/openbmc/linux/tools/perf/tests/shell/
H A Dstat+std_output.sh31 local prefix=1
34 in "--interval") prefix=2
35 ;; "--per-thread") prefix=2
36 ;; "--system-wide-no-aggr") prefix=2
37 ;; "--per-core") prefix=3
38 ;; "--per-socket") prefix=3
39 ;; "--per-node") prefix=3
40 ;; "--per-die") prefix=3
41 ;; "--per-cache") prefix=3
57 main_body=$(echo $line | cut -d' ' -f$prefix-)
/openbmc/qemu/qobject/
H A Dblock-qdict.c68 assert(prefix); in qdict_flatten_qlist()
110 if (prefix) { in qdict_flatten_qdict()
307 *prefix = g_strdup(key); in qdict_split_flat_key()
317 (*prefix)[j] = (*prefix)[i]; in qdict_split_flat_key()
319 (*prefix)[j] = '\0'; in qdict_split_flat_key()
431 char *prefix = NULL; in qdict_crumple() local
473 g_free(prefix); in qdict_crumple()
474 prefix = NULL; in qdict_crumple()
528 g_free(prefix); in qdict_crumple()
616 prefix[strlen(prefix) - 1] = 0; in qdict_array_entries()
[all …]
/openbmc/openbmc/poky/scripts/
H A Dgen-lockedsig-cache28 def map_sha_to_files(dir_, prefix, sha_map): argument
29 sstate_prefix_path = dir_ + '/' + prefix + '/'
43 def build_sha_cache(prefix): argument
47 map_sha_to_files(sstate_dir, prefix, sha_map)
50 map_sha_to_files(native_sstate_dir, prefix, sha_map)
83 prefix = s[:2] variable
85 if prefix not in sstate_content_cache:
86 sstate_content_cache[prefix] = {}
87 if prefix2 not in sstate_content_cache[prefix]:
88 sstate_content_cache[prefix][prefix2] = build_sha_cache(prefix + "/" + prefix2)
[all …]
/openbmc/openbmc/poky/meta/recipes-kernel/systemtap/systemtap/
H A D0001-Install-python-modules-to-correct-library-dir.patch9 Add OE's CFLAGS which contains `-fdebug-prefix-map' options to
13 it as a prefix to strip off the purported filename encoded
14 in bytecode files. (It strips build path prefix from .pyc files)
29 +# Add OE's CFLAGS which contains `-fdebug-prefix-map' options to
40 - install --prefix $(DESTDIR)$(prefix) \
41 + install --root $(DESTDIR) --prefix $(prefix) --prefix $(prefix) --install-lib=${pythondir} \
49 - install --prefix $(DESTDIR)$(prefix) \
50 + install --root $(DESTDIR) --prefix $(prefix) --install-lib=${python3dir} \
/openbmc/linux/drivers/clk/qcom/
H A Dlcc-msm8960.c117 .name = #prefix "_osr_src", \
135 .name = #prefix "_osr_clk", \
137 &prefix##_osr_src.clkr.hw, \
153 .name = #prefix "_div_clk", \
155 &prefix##_osr_src.clkr.hw, \
172 .name = #prefix "_bit_div_clk", \
174 &prefix##_div_clk.clkr.hw, \
190 .name = #prefix "_bit_clk", \
193 { .fw_name = #prefix "_codec_clk", \
210 CLK_AIF_OSR_SRC(prefix, _ns, _md) \
[all …]
/openbmc/linux/tools/testing/selftests/powerpc/pmu/ebb/
H A Dtrace.c239 trace_print_header(seq, *prefix); in trace_print_entry()
243 trace_print_header(seq, *prefix); in trace_print_entry()
247 trace_print_header(seq, *prefix); in trace_print_entry()
251 trace_print_header(seq, *prefix); in trace_print_entry()
253 *prefix += PREFIX_DELTA; in trace_print_entry()
256 *prefix -= PREFIX_DELTA; in trace_print_entry()
257 if (*prefix < BASE_PREFIX) in trace_print_entry()
258 *prefix = BASE_PREFIX; in trace_print_entry()
259 trace_print_header(seq, *prefix); in trace_print_entry()
272 int i, prefix; in trace_buffer_print() local
[all …]
/openbmc/openbmc/meta-arm/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/
H A Dexternal-arm-sdk-toolchain.bb45 ${prefix}/${EAT_TARGET_SYS}/lib/libstdc++.* \
46 ${prefix}/${EAT_TARGET_SYS}/lib/libgcc_s.* \
48 ${prefix}/${EAT_TARGET_SYS}/include \
63 ${prefix}/${EAT_TARGET_SYS}/bin/ld* \
64 ${prefix}/${EAT_TARGET_SYS}/bin/objcopy \
65 ${prefix}/${EAT_TARGET_SYS}/bin/strip \
66 ${prefix}/${EAT_TARGET_SYS}/bin/nm \
67 ${prefix}/${EAT_TARGET_SYS}/bin/ranlib \
68 ${prefix}/${EAT_TARGET_SYS}/bin/as \
69 ${prefix}/${EAT_TARGET_SYS}/bin/ar \
[all …]
/openbmc/linux/net/ipv6/
H A Daddrlabel.c33 struct in6_addr prefix; member
67 const struct in6_addr *prefix; member
72 .prefix = &in6addr_any,
103 .prefix = &in6addr_any,
107 .prefix = &in6addr_loopback,
193 ipv6_addr_prefix(&newp->prefix, prefix, prefixlen); in ip6addrlbl_alloc()
216 ipv6_addr_equal(&p->prefix, &newp->prefix)) { in __ip6addrlbl_add()
274 __func__, prefix, prefixlen, ifindex); in __ip6addrlbl_del()
279 ipv6_addr_equal(&p->prefix, prefix)) { in __ip6addrlbl_del()
297 __func__, prefix, prefixlen, ifindex); in ip6addrlbl_del()
[all …]
/openbmc/linux/tools/include/linux/
H A Dbtf_ids.h51 #define __ID(prefix) \ argument
52 __PASTE(__PASTE(prefix, __COUNTER__), __LINE__)
58 #define BTF_ID(prefix, name) \ argument
59 __BTF_ID(__ID(__BTF_ID__##prefix##__##name##__))
93 #define BTF_ID_LIST_SINGLE(name, prefix, typename) \ argument
95 BTF_ID(prefix, typename)
96 #define BTF_ID_LIST_GLOBAL_SINGLE(name, prefix, typename) \ argument
98 BTF_ID(prefix, typename)
161 #define BTF_ID(prefix, name) argument
164 #define BTF_ID_LIST_SINGLE(name, prefix, typename) static u32 __maybe_unused name[1]; argument
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/wxwidgets/wxwidgets/
H A Dwx-config-fix-libdir-for-multilib.patch22 set(prefix ${CMAKE_INSTALL_PREFIX})
23 set(exec_prefix "\${prefix}")
24 set(includedir "\${prefix}/include")
38 - wx-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--release] [--version-full]
39 + wx-config [--prefix[=DIR]] [--exec-prefix[=DIR]][--baselib=DIR]
44 @@ -137,7 +138,7 @@ wxconfig_output_options="prefix exec_prefix
48 -wxconfig_input_options="prefix exec_prefix utility $wxconfig_schema"
49 +wxconfig_input_options="prefix exec_prefix baselib utility $wxconfig_schema"
55 prefix=${input_option_prefix-${this_prefix:-@prefix@}}
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/graphviz/graphviz/
H A D0001-Autotools-fix-do-not-put-prefix-based-paths-in-compi.patch4 Subject: [PATCH] Autotools: fix: do not put '$prefix' based paths in
9 `--prefix` path. The `--prefix` path is meant to indicate a target path to
32 + `--prefix` path given on the command line. This previously caused
41 @@ -190,14 +190,6 @@ if test "x${prefix}" = "xNONE"; then
42 AC_SUBST([prefix])
45 -# automatically check for other dependencies in $prefix first
46 -if test "x${prefix}" != "x/usr"; then
47 - CPPFLAGS="$CPPFLAGS -I${prefix}/include"
48 - LDFLAGS="$LDFLAGS -L${prefix}/lib"
49 - PKG_CONFIG_PATH="$prefix/lib/pkgconfig$PATHSEPARATOR$PKG_CONFIG_PATH"
/openbmc/openbmc/poky/meta/recipes-devtools/libtool/libtool/
H A D0002-libtool.m4-Rename-the-with-sysroot-option-to-avoid-c.patch63 -configure_options="$configure_options --with-sysroot=$sysroot --prefix=$prefix"
64 +configure_options="$configure_options --with-libtool-sysroot=$sysroot --prefix=$prefix"
94 -configure_options="$configure_options --with-sysroot=$sysroot --prefix=$prefix"
95 +configure_options="$configure_options --with-libtool-sysroot=$sysroot --prefix=$prefix"
121 -configure_options="$configure_options --with-sysroot=$sysroot --prefix=$prefix"
122 +configure_options="$configure_options --with-libtool-sysroot=$sysroot --prefix=$prefix"
148 -configure_options="$configure_options --with-sysroot=$sysroot --prefix=$prefix"
149 +configure_options="$configure_options --with-libtool-sysroot=$sysroot --prefix=$prefix"
/openbmc/openbmc/poky/scripts/lib/build_perf/
H A Dreport.py297 def measurement_stats(meas, prefix=''): argument
300 return {prefix + 'sample_cnt': 0,
301 prefix + 'mean': MeasurementVal('nan'),
304 prefix + 'min': MeasurementVal('nan'),
305 prefix + 'max': MeasurementVal('nan'),
320 stats[prefix + 'sample_cnt'] = len(values)
326 stats[prefix + 'mean'] = mean_val
331 stats[prefix + 'stdev'] = float('nan')
332 stats[prefix + 'variance'] = float('nan')
333 stats[prefix + 'min'] = min_val
[all …]

12345678910>>...69