Home
last modified time | relevance | path

Searched full:var2 (Results 1 – 17 of 17) sorted by relevance

/openbmc/openbmc-test-automation/ffdc/templates/
H A Denv_vars_template.yaml6 # var1, var2, var3 and so on you can add and populate as needed.
9 var2: 2
/openbmc/u-boot/drivers/ddr/marvell/axp/
H A Dddr3_sdram.c97 u32 var2; in compare_pattern_v1() local
104 var2 = ((pattern[uj] >> val) & CMP_BYTE_MASK); in compare_pattern_v1()
106 if (var1 != var2) { in compare_pattern_v1()
118 ((var2 >> dq) & 0x1)) in compare_pattern_v1()
134 u32 var2; in compare_pattern_v2() local
141 var2 = (pattern[uj] >> val) & CMP_BYTE_MASK; in compare_pattern_v2()
142 if (var1 != var2) in compare_pattern_v2()
223 u32 uj, uk, var1, var2, pup_groups; in ddr3_sdram_dm_compare() local
254 var2 = ((pattern[uj] >> val) & CMP_BYTE_MASK); in ddr3_sdram_dm_compare()
255 if (var1 != var2) { in ddr3_sdram_dm_compare()
[all …]
/openbmc/qemu/tests/qtest/migration/
H A Dmigration-util.h39 const char *var2);
41 const char *var2);
H A Dmigration-util.c186 const char *var2) in find_common_machine_version() argument
189 g_autofree char *type2 = qtest_resolve_machine_alias(var2, mtype); in find_common_machine_version()
198 if (qtest_has_machine_with_env(var2, type1)) { in find_common_machine_version()
207 "binaries %s and %s", mtype, getenv(var1), getenv(var2)); in find_common_machine_version()
212 const char *var2) in resolve_machine_version() argument
233 return find_common_machine_version(machine_name, var1, var2); in resolve_machine_version()
/openbmc/qemu/scripts/simplebench/
H A Dimg_bench_templater.py61 column templating: {var1|var2|...} - test will use different values in
65 row templating: [var1|var2|...] - similar thing to define rows (test-cases)
/openbmc/phosphor-mrw-tools/
H A Dgen_settings.pl140 #Example: "VAR1=VALUE1 VAR2=VALUE2"
168 in the form: \"VAR1=VALUE1 VAR2=VALUE2\"
/openbmc/openbmc/poky/bitbake/lib/bb/tests/
H A Ddata.py584 d.setVar("VAR", "${@bb.utils.contains('VAR2', 'A', 'val', '', d)}")
588 d.setVar("VAR2", "A")
592 # The contains should be inactive but even though VAR2 has a
594 d.setVar("VAR2", "B")
/openbmc/pldm/common/
H A Dutils.hpp723 std::variant<std::string, int64_t> var2, var3; in getBiosAttrValue() local
733 reply.read(var1, var2, var3); in getBiosAttrValue()
734 if (auto ptr = std::get_if<T>(&var2)) in getBiosAttrValue()
/openbmc/qemu/linux-user/
H A Dmain.c617 " -E var1=val2 -E var2=val2 -U LD_PRELOAD -U LD_DEBUG\n" in usage()
618 " -E var1=val2,var2=val2 -U LD_PRELOAD,LD_DEBUG\n" in usage()
619 " QEMU_SET_ENV=var1=val2,var2=val2 QEMU_UNSET_ENV=LD_PRELOAD,LD_DEBUG\n" in usage()
/openbmc/openbmc-test-automation/lib/
H A Dprint.tcl601 # set var2 "there"
603 # set buffer [sprint_vars var1 var2]
605 # set buffer [sprint_vars var1 var2 $indent]
H A Dgen_valid.py126 # def valid_value(var_value, var1, var2, varn, var_name=None):
H A Dgen_print.py176 … my_func(var1, var2)" and suppose that my_func has this line of code:
179 … would be returned, If arg_num is 2, "var2" would be returned. If arg_num
/openbmc/qemu/target/hexagon/idef-parser/
H A DREADME.rst285 ``int var2 = 0;`` is also allowed and behaves as expected. In tinycode
292 int var2 = 0; -> TCGv_i32 var1 = tcg_temp_new_i32();
/openbmc/qemu/libdecnumber/
H A DdecNumber.c4321 /* Exp =Exp +len(var1) -len(var2) */
4324 /* Pad Var2 to same length as Var1 */
4325 /* msu2pair/plus=1st 2 or 1 units of var2, +1 to allow for round */
4337 /* If same then tops2=msu2pair -- {units 1&2 of var2} */
4338 /* else tops2=msu2plus -- {0, unit 1 of var2} */
4348 /* var2=var2/10 */
4359 /* var1 is a copy of the lhs coefficient, var2 is the rhs coefficient.*/
4383 const Unit *var2; /* -> var2 array */ in decDivideOp() local
4384 const Unit *msu2; /* -> msu of var2 */ in decDivideOp()
4587 /* subtract in place is always possible. The rhs (var2) has */ in decDivideOp()
[all …]
/openbmc/qemu/bsd-user/
H A Dmain.c189 " -E var1=val2 -E var2=val2 -U LD_PRELOAD -U LD_DEBUG\n" in usage()
/openbmc/openbmc/poky/documentation/dev-manual/
H A Dnew-recipe.rst1516 VAR2 = "The version is ${PV}"
/openbmc/u-boot/scripts/
H A Dcheckpatch.pl4562 my $var2 = deparenthesize($var);
4563 $var2 =~ s/\s//g;
4564 $fixed[$fixlinenr] =~ s/\Q$var\E/$var2/;