Home
last modified time | relevance | path

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

12345678910>>...74

/openbmc/qemu/block/
H A Dcrypto.h24 #define BLOCK_CRYPTO_OPT_DEF_KEY_SECRET(prefix, helpstr) \ argument
26 .name = prefix BLOCK_CRYPTO_OPT_QCOW_KEY_SECRET, \
33 #define BLOCK_CRYPTO_OPT_DEF_QCOW_KEY_SECRET(prefix) \ argument
34 BLOCK_CRYPTO_OPT_DEF_KEY_SECRET(prefix, \
51 #define BLOCK_CRYPTO_OPT_DEF_LUKS_KEY_SECRET(prefix) \ argument
52 BLOCK_CRYPTO_OPT_DEF_KEY_SECRET(prefix, \
55 #define BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_ALG(prefix) \ argument
57 .name = prefix BLOCK_CRYPTO_OPT_LUKS_CIPHER_ALG, \
62 #define BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_MODE(prefix) \ argument
64 .name = prefix BLOCK_CRYPTO_OPT_LUKS_CIPHER_MODE, \
[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/firmware/broadcom/
H A Dbcm47xx_sprom.c36 static void create_key(const char *prefix, const char *postfix, in create_key() argument
39 if (prefix && postfix) in create_key()
40 snprintf(buf, len, "%s%s%s", prefix, name, postfix); in create_key()
41 else if (prefix) in create_key()
42 snprintf(buf, len, "%s%s", prefix, name); in create_key()
49 static int get_nvram_var(const char *prefix, const char *postfix, in get_nvram_var() argument
55 create_key(prefix, postfix, name, key, sizeof(key)); in get_nvram_var()
58 if (fallback && err == -ENOENT && prefix) { in get_nvram_var()
66 static void nvram_read_ ## type(const char *prefix, \
74 err = get_nvram_var(prefix, postfix, name, buf, sizeof(buf), \
[all …]
/openbmc/linux/drivers/usb/gadget/function/
H A Df_mass_storage.h21 #define _FSG_MODULE_PARAM_ARRAY(prefix, params, name, type, desc) \ argument
22 module_param_array_named(prefix ## name, params.name, type, \
23 &prefix ## params.name ## _count, \
25 MODULE_PARM_DESC(prefix ## name, desc)
27 #define _FSG_MODULE_PARAM(prefix, params, name, type, desc) \ argument
28 module_param_named(prefix ## name, params.name, type, \
30 MODULE_PARM_DESC(prefix ## name, desc)
32 #define __FSG_MODULE_PARAMETERS(prefix, params) \ argument
33 _FSG_MODULE_PARAM_ARRAY(prefix, params, file, charp, \
35 _FSG_MODULE_PARAM_ARRAY(prefix, params, ro, bool, \
[all …]
/openbmc/linux/drivers/regulator/
H A Dmc13xxx.h55 #define MC13xxx_DEFINE(prefix, _name, _node, _reg, _vsel_reg, _voltages, _ops) \ argument
56 [prefix ## _name] = { \
63 .id = prefix ## _name, \
66 .reg = prefix ## _reg, \
67 .enable_bit = prefix ## _reg ## _ ## _name ## EN, \
68 .vsel_reg = prefix ## _vsel_reg, \
69 .vsel_shift = prefix ## _vsel_reg ## _ ## _name ## VSEL,\
70 .vsel_mask = prefix ## _vsel_reg ## _ ## _name ## VSEL_M,\
73 #define MC13xxx_FIXED_DEFINE(prefix, _name, _node, _reg, _voltages, _ops) \ argument
74 [prefix ## _name] = { \
[all …]
/openbmc/qemu/scripts/qapi/
H A Dmain.py24 def invalid_prefix_char(prefix: str) -> Optional[str]:
25 match = must_match(r'([A-Za-z_.-][A-Za-z0-9_.-]*)?', prefix)
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)
53 gen_commands(schema, output_dir, prefix, gen_tracing)
54 gen_events(schema, output_dir, 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
59 __BTF_ID(__ID(__BTF_ID__##prefix##__##name##__), "")
61 #define ____BTF_ID_FLAGS(prefix, name, flags) \ argument
62 __BTF_ID(__ID(__BTF_ID__##prefix##__##name##__), ".long " #flags "\n")
63 #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)
[all …]
/openbmc/qemu/qobject/
H A Dblock-qdict.c53 const char *prefix);
55 static void qdict_flatten_qlist(QList *qlist, QDict *target, const char *prefix) in qdict_flatten_qlist() argument
68 assert(prefix); in qdict_flatten_qlist()
76 new_key = g_strdup_printf("%s.%i", prefix, i); in qdict_flatten_qlist()
94 static void qdict_flatten_qdict(QDict *qdict, QDict *target, const char *prefix) in qdict_flatten_qdict() argument
110 if (prefix) { in qdict_flatten_qdict()
111 key = new_key = g_strdup_printf("%s.%s", prefix, entry->key); in qdict_flatten_qdict()
228 char indexstr[32], prefix[32]; in qdict_array_split() local
236 snprintf_ret = snprintf(prefix, 32, "%u.", i); in qdict_array_split()
240 is_subqdict = qdict_count_prefixed_entries(src, prefix); in qdict_array_split()
[all …]
/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 @@ -121,6 +121,8 @@ def get_python_inc(plat_specific=False, prefix=None):
32 resolved_prefix = prefix if prefix is not None else default_prefix
35 @@ -241,7 +243,13 @@ def get_python_lib(plat_specific=False, standard_lib=False, prefix=None):
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:
[all …]
/openbmc/bmcweb/redfish-core/include/utils/
H A Dip_utils.hpp58 uint8_t prefix = 0; in ipv4VerifyIpAndGetBitcount() local
74 prefix += 8; in ipv4VerifyIpAndGetBitcount()
77 prefix += 7; in ipv4VerifyIpAndGetBitcount()
81 prefix += 6; in ipv4VerifyIpAndGetBitcount()
85 prefix += 5; in ipv4VerifyIpAndGetBitcount()
89 prefix += 4; in ipv4VerifyIpAndGetBitcount()
93 prefix += 3; in ipv4VerifyIpAndGetBitcount()
97 prefix += 2; in ipv4VerifyIpAndGetBitcount()
101 prefix += 1; in ipv4VerifyIpAndGetBitcount()
112 *prefixLength = prefix; in ipv4VerifyIpAndGetBitcount()
/openbmc/linux/drivers/clk/qcom/
H A Dlcc-msm8960.c92 #define CLK_AIF_OSR_SRC(prefix, _ns, _md) \ argument
93 static struct clk_rcg prefix##_osr_src = { \
117 .name = #prefix "_osr_src", \
126 #define CLK_AIF_OSR_CLK(prefix, _ns, hr, en_bit) \ argument
127 static struct clk_branch prefix##_osr_clk = { \
135 .name = #prefix "_osr_clk", \
137 &prefix##_osr_src.clkr.hw, \
146 #define CLK_AIF_OSR_DIV_CLK(prefix, _ns, _width) \ argument
147 static struct clk_regmap_div prefix##_div_clk = { \
153 .name = #prefix "_div_clk", \
[all …]
/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 argument
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.S5 .macro test_shift prefix, dst, src, v, imm
6 \prefix\()_set \dst, \src, \v, \imm
7 \prefix\()_ver \dst, \v, \imm
10 .macro test_shift_sd prefix, v, imm
11 test_shift \prefix, a3, a2, \v, \imm
12 test_shift \prefix, a2, a2, \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
[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/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/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/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/linux/tools/testing/selftests/powerpc/pmu/ebb/
H A Dtrace.c168 static void trace_print_header(int seq, int prefix) in trace_print_header() argument
170 printf("%*s[%d]: ", prefix, "", seq); in trace_print_header()
235 static void trace_print_entry(struct trace_entry *e, int seq, int *prefix) in trace_print_entry() argument
239 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()
[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,
75 .prefix = &(struct in6_addr){ { { 0xfc } } } ,
79 .prefix = &(struct in6_addr){ { { 0xfe, 0xc0 } } },
83 .prefix = &(struct in6_addr){ { { 0x20, 0x02 } } },
87 .prefix = &(struct in6_addr){ { { 0x3f, 0xfe } } },
91 .prefix = &(struct in6_addr){ { { 0x20, 0x01 } } },
95 .prefix = &(struct in6_addr){ { { 0x20, 0x01, 0x00, 0x10 } } },
99 .prefix = &(struct in6_addr){ { { [10] = 0xff, [11] = 0xff } } },
[all …]
/openbmc/openbmc/poky/scripts/lib/build_perf/
H A Dreport.py297 def measurement_stats(meas, prefix='', time=0): argument
300 return {prefix + 'sample_cnt': 0,
301 prefix + 'mean': MeasurementVal('nan'),
302 prefix + 'stdev': MeasurementVal('nan'),
303 prefix + 'variance': MeasurementVal('nan'),
304 prefix + 'min': MeasurementVal('nan'),
305 prefix + 'max': MeasurementVal('nan'),
306 prefix + 'minus': MeasurementVal('nan'),
307 prefix + 'plus': MeasurementVal('nan')}
320 stats[prefix + 'sample_cnt'] = len(values)
[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 D0005-wx-config-fix-libdir-for-multilib.patch28 set(prefix ${CMAKE_INSTALL_PREFIX})
29 set(exec_prefix "\${prefix}")
30 set(includedir "\${prefix}/include")
44 - wx-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--release] [--version-full]
45 + wx-config [--prefix[=DIR]] [--exec-prefix[=DIR]][--baselib=DIR]
50 @@ -133,7 +134,7 @@ wxconfig_output_options="prefix exec_prefix
54 -wxconfig_input_options="prefix exec_prefix utility $wxconfig_schema"
55 +wxconfig_input_options="prefix exec_prefix baselib utility $wxconfig_schema"
61 prefix=${input_option_prefix-${this_prefix:-@prefix@}}
/openbmc/openbmc/poky/meta/recipes-extended/ltp/
H A Dltp_20240930.bb55 export prefix = "/opt/${PN}"
69 install -d ${D}${prefix}/
78 rm -rf ${D}${prefix}/bin/STPfailure_report.pl
82 sed -e '/^memcg_stress/d' -i ${D}${prefix}/runtest/controllers
119prefix}/* ${prefix}/runtest/* ${prefix}/scenario_groups/* ${prefix}/testcases/bin/* ${prefix}/test…
122 INHIBIT_PACKAGE_STRIP_FILES = "${prefix}/testcases/bin/nm01 ${prefix}/testcases/bin/ldd01"
/openbmc/openbmc/poky/meta/recipes-devtools/pseudo/
H A Dpseudo.inc13 FILES:${PN} = "${prefix}/lib/pseudo/lib*/libpseudo.so ${bindir}/* ${localstatedir}/pseudo ${prefix}…
36 …${S}/configure ${PSEUDO_EXTRA_OPTS} --prefix=${prefix} --libdir=${prefix}/lib/pseudo/lib${SITEINFO…
38 …${S}/configure ${PSEUDO_EXTRA_OPTS} --prefix=${prefix} --libdir=${prefix}/lib/pseudo/lib --with-sq…
93 …./configure ${PSEUDO_EXTRA_OPTS} --prefix=${prefix} --libdir=${prefix}/lib/pseudo/lib --with-sqlit…
108 …./configure ${PSEUDO_EXTRA_OPTS} --prefix=${prefix} --libdir=${prefix}/lib/pseudo/lib --with-sqlit…
144 mkdir -p ${D}${prefix}/lib/pseudo/lib
145 cp lib/pseudo/lib/libpseudo.so ${D}${prefix}/lib/pseudo/lib/.
152 mkdir -p ${D}${prefix}/lib/pseudo/lib
153 cp lib/pseudo/lib/libpseudo.so ${D}${prefix}/lib/pseudo/lib/.
155 chrpath -d ${D}${prefix}/lib/pseudo/lib*/libpseudo.so
/openbmc/qemu/include/hw/
H A Dboards.h574 #define _MACHINE_VER_TYPE_NAME2(prefix, major, minor) \ argument
575 prefix "-" #major "." #minor TYPE_MACHINE_SUFFIX
577 #define _MACHINE_VER_TYPE_NAME3(prefix, major, minor, micro) \ argument
578 prefix "-" #major "." #minor "." #micro TYPE_MACHINE_SUFFIX
580 #define _MACHINE_VER_TYPE_NAME4(prefix, major, minor, _unused_, tag) \ argument
581 prefix "-" #major "." #minor "-" #tag TYPE_MACHINE_SUFFIX
583 #define _MACHINE_VER_TYPE_NAME5(prefix, major, minor, micro, _unused_, tag) \ argument
584 prefix "-" #major "." #minor "." #micro "-" #tag TYPE_MACHINE_SUFFIX
586 #define MACHINE_VER_TYPE_NAME(prefix, ...) \ argument
591 _MACHINE_VER_TYPE_NAME2) (prefix, __VA_ARGS__)
[all …]

12345678910>>...74