| /openbmc/qemu/block/ |
| H A D | crypto.h | 24 #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 D | libvpx-configure-support-blank-prefix.patch | 6 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/bmcweb/redfish-core/include/utils/ |
| H A D | ip_utils.hpp | 58 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/openbmc/poky/meta/classes-recipe/ |
| H A D | scons.bbclass | 18 …${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 D | test_sar.S | 5 .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 D | test_shift.S | 5 .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/qemu/scripts/qapi/ |
| H A D | backend.py | 22 prefix: str, 45 prefix: str, 60 gen_types(schema, output_dir, prefix, builtins) 61 gen_features(schema, output_dir, prefix) 62 gen_visit(schema, output_dir, prefix, builtins) 63 gen_commands(schema, output_dir, prefix, gen_tracing) 64 gen_events(schema, output_dir, prefix) 65 gen_introspect(schema, output_dir, prefix, unmask)
|
| H A D | main.py | 21 def invalid_prefix_char(prefix: str) -> Optional[str]: 22 match = must_match(r'([A-Za-z_.-][A-Za-z0-9_.-]*)?', prefix) 23 if match.end() != len(prefix): 24 return prefix[match.end()] 91 funny_char = invalid_prefix_char(args.prefix) 102 prefix=args.prefix,
|
| /openbmc/openbmc/poky/scripts/ |
| H A D | gen-lockedsig-cache | 28 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 D | 0001-Install-python-modules-to-correct-library-dir.patch | 9 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/qemu/qobject/ |
| H A D | block-qdict.c | 53 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 D | 0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch | 5 prefix to target sysroot 11 meta/recipes-devtools/python/python3/12-distutils-prefix-is-inside-staging-area.patch 26 @@ -134,6 +134,8 @@ def get_python_inc(plat_specific: bool = False, prefix: str | None = None) -> st 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/meta-openembedded/meta-oe/recipes-extended/wxwidgets/wxwidgets/ |
| H A D | 0005-wx-config-fix-libdir-for-multilib.patch | 28 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/qemu/util/ |
| H A D | path.c | 17 void init_paths(const char *prefix) in init_paths() argument 19 if (prefix[0] == '\0' || !strcmp(prefix, "/")) { in init_paths() 23 if (prefix[0] == '/') { in init_paths() 24 base = g_strdup(prefix); in init_paths() 27 base = g_build_filename(cwd, prefix, NULL); in init_paths()
|
| /openbmc/openbmc/poky/scripts/lib/build_perf/ |
| H A D | report.py | 297 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/pyphosphor/obmc/utils/ |
| H A D | misc.py | 18 def org_dot_openbmc_match_strings(sep='.', prefix=''): argument 24 return [prefix + sep.join(y) for y in matches] 27 def org_dot_openbmc_match(name, sep='.', prefix=''): argument 28 names = org_dot_openbmc_match_strings(sep=sep, prefix=prefix)
|
| /openbmc/openbmc/poky/meta/recipes-devtools/clang/clang/ |
| H A D | 0027-ToolChains-Gnu.cpp-ARMLibDirs-search-also-in-lib32.patch | 33 …prefix=/usr -Qunused-arguments -funwind-tables -fstack-protector-strong -O2 -D_FORTIFY_SOURCE=2 -… 34 …prefix=/usr -Qunused-arguments -funwind-tables -fstack-protector-strong -O2 -D_FORTIFY_SOURCE=2 -… 36 …prefix=/usr -Qunused-arguments -funwind-tables -fstack-protector-strong -O2 -D_FORTIFY_SOURCE=2 -…
|
| /openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libnet/libnet-ssleay-perl/ |
| H A D | no-exec-on-configure.patch | 10 my $prefix = $self->find_openssl_prefix; 11 - my $exec = $self->find_openssl_exec($prefix); 23 - $self->check_openssl_version($prefix, $exec); 24 - my $opts = $self->ssleay_get_build_opts($prefix, $exec); 25 + my $opts = $self->ssleay_get_build_opts($prefix); 33 - my ($self, $prefix, $exec) = @_; 34 + my ($self, $prefix) = @_;
|
| /openbmc/openbmc/meta-openpower/recipes-bsp/ecmd/ |
| H A D | libecmd_git.bb | 20 --without-pyecmd --install-path ${D}${prefix} --output-root ${B} --target ${TARGET_ARCH} \ 37 mv ${D}${prefix}/help/** ${D}${datadir}/${BPN}/help 38 mv ${D}${prefix}/${TARGET_ARCH}/bin/** ${D}${bindir} 39 mv ${D}${prefix}/${TARGET_ARCH}/lib/** ${D}${libdir} 43 rmdir ${D}${prefix}/help \ 44 ${D}${prefix}/${TARGET_ARCH}/lib \ 45 ${D}${prefix}/${TARGET_ARCH}/bin \ 46 ${D}${prefix}/${TARGET_ARCH}/perl \ 47 ${D}${prefix}/${TARGET_ARCH}
|
| /openbmc/openbmc/poky/meta/recipes-devtools/pseudo/ |
| H A D | pseudo.inc | 13 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/openbmc/poky/meta/recipes-extended/ltp/ |
| H A D | ltp_20250130.bb | 55 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 119 …prefix}/* ${prefix}/runtest/* ${prefix}/scenario_groups/* ${prefix}/testcases/bin/* ${prefix}/test… 122 INHIBIT_PACKAGE_STRIP_FILES = "${prefix}/testcases/bin/nm01 ${prefix}/testcases/bin/ldd01"
|
| /openbmc/qemu/include/hw/ |
| H A D | boards.h | 579 #define _MACHINE_VER_TYPE_NAME2(prefix, major, minor) \ argument 580 prefix "-" #major "." #minor TYPE_MACHINE_SUFFIX 582 #define _MACHINE_VER_TYPE_NAME3(prefix, major, minor, micro) \ argument 583 prefix "-" #major "." #minor "." #micro TYPE_MACHINE_SUFFIX 585 #define _MACHINE_VER_TYPE_NAME4(prefix, major, minor, _unused_, tag) \ argument 586 prefix "-" #major "." #minor "-" #tag TYPE_MACHINE_SUFFIX 588 #define _MACHINE_VER_TYPE_NAME5(prefix, major, minor, micro, _unused_, tag) \ argument 589 prefix "-" #major "." #minor "." #micro "-" #tag TYPE_MACHINE_SUFFIX 591 #define MACHINE_VER_TYPE_NAME(prefix, ...) \ argument 596 _MACHINE_VER_TYPE_NAME2) (prefix, __VA_ARGS__) [all …]
|
| /openbmc/bmcweb/redfish-core/src/ |
| H A D | filter_expr_printer.cpp | 52 std::string prefix; in operator ()() local 56 prefix = "not("; in operator ()() 59 return std::format("{}{}{}", prefix, (*this)(x.operand), postfix); in operator ()() 64 std::string prefix; in operator ()() local 68 prefix = "("; in operator ()() 71 std::string out = std::format("{}{}{}", prefix, (*this)(x.first), postfix); in operator ()() 83 std::string prefix; in operator ()() local 87 prefix = "("; in operator ()() 90 std::string out = std::format("{}{}{}", prefix, (*this)(x.first), postfix); in operator ()()
|
| /openbmc/u-boot/tools/ |
| H A D | mrvl_uart.sh | 29 prefix="\xF2" 33 prefix="\xF4" 37 prefix="\xF8" 41 prefix="\xBB" 100 echo -n -e "$prefix\x11\x22\x33\x44\x55\x66\x77" >> $tmpfile
|
| /openbmc/bmcweb/redfish-core/include/ |
| H A D | redfish_aggregator.hpp | 201 std::string_view prefix) in addPrefixToStringItem() argument 259 std::string collectionItem(prefix); in addPrefixToStringItem() 283 inline void addPrefixToItem(nlohmann::json& item, std::string_view prefix) in addPrefixToItem() argument 294 addPrefixToStringItem(*strValue, prefix); in addPrefixToItem() 300 std::string_view prefix) in addAggregatedHeaders() argument 316 addPrefixToStringItem(location, prefix); in addAggregatedHeaders() 329 std::string_view prefix) in addPrefixToHeadersInResp() argument 353 addPrefixToStringItem(header, prefix); in addPrefixToHeadersInResp() 361 inline void addPrefixes(nlohmann::json& json, std::string_view prefix) in addPrefixes() argument 371 addPrefixToItem(item.second, prefix); in addPrefixes() [all …]
|