Home
last modified time | relevance | path

Searched full:var1 (Results 1 – 25 of 28) sorted by relevance

12

/openbmc/openbmc-test-automation/lib/
H A Dvar_stack.py30 var1 = "johnson"
31 save_stack.push(var1)
32 var1 = "smith"
34 var1 = save_stack.pop('var1')
35 # var1 has now been restored to the value "johnson".
40 var1 = "mike"
41 save_stack.push(var1)
42 var1 = "james"
43 save_stack.push(var1)
50 [var1]:
[all …]
H A Descape.tcl121 # set var1 {john*sm(]ith}
122 # print_vars var1
123 # set var1 [escape_regex_metachars $var1]
124 # print_vars var1
128 # var1: john*sm(]ith
129 # var1: john\*sm\(\]ith
H A Dgen_misc.py283 var1="This one"
284 Quotes are stripped so the resulting value for var1 is:
521 var1 = 0xfffffffffffffff1
522 print_var(var1)
523 print_var(var1, hexa())
524 var1 = to_signed(var1)
525 print_var(var1)
526 print_var(var1, hexa())
529 var1: 18446744073709551601
530 var1: 0x00000000fffffffffffffff1
[all …]
H A Dgen_valid.py86 error_message = valid_value(var1)
126 # def valid_value(var_value, var1, var2, varn, var_name=None):
160 valid_type(var1, int)
162 valid_type(var1, (list, dict))
200 var1 = ''
201 valid_value(var1)
203 … This code would fail because var1 is blank and the default value for invalid_values is ['', None].
206 var1 = 'yes'
207 valid_value(var1, valid_values=['yes', 'true'])
H A Dgen_robot_print.py26 … The names of the variables to be printed (e.g. var1 rather than ${var1}).
H A Ddata_proc.tcl119 # var_var The name of a variable (e.g. "::env(NANOSECOND)" or "var1").
177 # var1="This one"
178 # Quotes are stripped so the resulting value for var1 is:
H A Dgen_robot_valid.py22 …var_name The name of the robot variable (e.g. "var1"). Do not include "${}…
23 "${var1}". Just provide the simple name of the variable.
H A Dgen_print.py176 … my_func(var1, var2)" and suppose that my_func has this line of code:
178 … indicated argument is returned. For example, if arg_num is 1, "var1"
1049 … sprint_varx("var1", var1, fmt=verbose()). Note that these values can be
1050 … OR'ed together: print_var(var1, hexa() | verbose()). If the caller ORs
1269 sprint_varx("var1", var1)
1270 sprint_var(var1)
H A Dprint.tcl600 # set var1 "hello"
603 # set buffer [sprint_vars var1 var2]
605 # set buffer [sprint_vars var1 var2 $indent]
/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.
8 var1: 1
/openbmc/u-boot/drivers/ddr/marvell/axp/
H A Dddr3_sdram.c96 u32 var1; in compare_pattern_v1() local
103 var1 = ((sdram_data[uj] >> val) & CMP_BYTE_MASK); in compare_pattern_v1()
106 if (var1 != var2) { in compare_pattern_v1()
117 if (((var1 >> dq) & 0x1) != in compare_pattern_v1()
133 u32 var1; in compare_pattern_v2() local
140 var1 = (sdram_data[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
253 var1 = ((sdram_data[uj] >> val) & CMP_BYTE_MASK); in ddr3_sdram_dm_compare()
255 if (var1 != var2) { in ddr3_sdram_dm_compare()
[all …]
/openbmc/openbmc/poky/scripts/postinst-intercepts/
H A Dpostinst_intercept10 # Usage: postinst_intercept <intercept_script_name> <package_name> <mlprefix=...> <var1=...> ... <v…
15 # * var1=... - var1 will have the value we provide in the intercept script. This
/openbmc/qemu/tests/qtest/migration/
H A Dmigration-util.h38 char *find_common_machine_version(const char *mtype, const char *var1,
40 char *resolve_machine_version(const char *alias, const char *var1,
H A Dmigration-util.c185 char *find_common_machine_version(const char *mtype, const char *var1, in find_common_machine_version() argument
188 g_autofree char *type1 = qtest_resolve_machine_alias(var1, mtype); in find_common_machine_version()
202 if (qtest_has_machine_with_env(var1, type2)) { in find_common_machine_version()
207 "binaries %s and %s", mtype, getenv(var1), getenv(var2)); in find_common_machine_version()
211 char *resolve_machine_version(const char *alias, const char *var1, in resolve_machine_version() argument
233 return find_common_machine_version(machine_name, var1, var2); in resolve_machine_version()
/openbmc/qemu/tests/qapi-schema/
H A Ddoc-good.out23 member var1: str optional=False
133 @var1 is undocumented
134 arg=var1
H A Ddoc-good.txt68 "var1" is undocumented
71 * **var1** ("string") -- Not documented
H A Ddoc-good.json102 # @var1 is undocumented
110 'data': { 'var1': { 'type': 'str',
/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/openbmc-test-automation/
H A DCONTRIBUTING.md46 ${var1} ${EMPTY}
70 IF '${var1}' == '${0}' My Keyword
76 IF '${var1}'=='${0}' My Keyword
226 ${var1}= Set Variable ${1}
227 ${var1}= My Keyword
233 ${var1} = Set Variable ${1}
234 ${var1} = My Keyword
/openbmc/phosphor-mrw-tools/
H A Dgen_settings.pl140 #Example: "VAR1=VALUE1 VAR2=VALUE2"
168 in the form: \"VAR1=VALUE1 VAR2=VALUE2\"
/openbmc/qemu/target/hexagon/idef-parser/
H A DREADME.rst284 ``int var1;`` which declares an uninitialized variable ``var1``. Initialization
290 int var1; -> TCGv_i32 var1 = tcg_temp_new_i32();
292 int var2 = 0; -> TCGv_i32 var1 = tcg_temp_new_i32();
/openbmc/qemu/libdecnumber/
H A DdecNumber.c4321 /* Exp =Exp +len(var1) -len(var2) */
4323 /* Pad accumulator (Var1) to double-length with 0's (pad1) */
4324 /* Pad Var2 to same length as Var1 */
4353 /* Return (Result is defined by Var1) */
4358 /* long subtractions. These are acc and var1 respectively. */
4359 /* var1 is a copy of the lhs coefficient, var2 is the rhs coefficient.*/
4378 Unit varbuff[SD2U(DECBUFFER*2+DECDPUN)*sizeof(Unit)]; /* buffer for var1 */ in decDivideOp()
4379 Unit *var1=varbuff; /* -> var1 array for long subtraction */ in decDivideOp() local
4381 Unit *msu1; /* -> msu of var1 */ in decDivideOp()
4390 Int var1initpad=0; /* var1 initial padding (digits) */ in decDivideOp()
[all …]
/openbmc/openbmc/poky/documentation/dev-manual/
H A Dnew-recipe.rst1515 VAR1 = "${OTHERVAR}"
1525 Here is an example where ``VAR1`` is set to "New value" if it is
1526 currently empty. However, if ``VAR1`` has already been set, it
1529 VAR1 ?= "New value"
1531 In this next example, ``VAR1`` is left with the value "Original value"::
1533 VAR1 = "Original value"
1534 VAR1 ?= "New value"
/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/pldm/common/
H A Dutils.hpp722 std::string var1; in getBiosAttrValue() local
733 reply.read(var1, var2, var3); in getBiosAttrValue()

12