Searched refs:vals (Results 1 - 14 of 14) sorted by relevance

/u-boot/test/py/tests/
H A Dtest_trace.py44 vals = {key: val.replace(',', '') for val, key in lines}
46 assert int(vals['function sites']) > 100000
47 assert int(vals['function calls']) > 200000
48 assert int(vals['untracked function calls']) == 0
49 assert int(vals['maximum observed call depth']) > 30
50 assert (vals['call depth limit'] ==
52 assert int(vals['calls not traced due to depth']) > 100000
126 vals = {items[4]: float(items[2]) for items in lines if len(items) == 5}
129 for timestamp in vals.values():
136 assert 'initf_malloc' in vals
[all...]
/u-boot/tools/
H A Dexpo.py42 vals = collections.OrderedDict()
60 vals[m_enum.group(1)] = cur_id
65 vals[m_def.group(1)] = tools.to_bytes(m_def.group(2))
67 return vals
/u-boot/test/py/
H A Dconftest.py287 vals = []
298 vals.append(f'{suite} {name}')
300 ids = ['ut_' + s.replace(' ', '_') for s in vals]
301 metafunc.parametrize(fixture_name, vals, ids=ids)
329 vals = []
334 vals = (val, )
338 vals = subconfig.get(fixture_name+ 's', [])
344 ids = [fixture_id(index, val) for (index, val) in enumerate(vals)]
345 metafunc.parametrize(fixture_name, vals, ids=ids)
/u-boot/drivers/clk/uniphier/
H A Dclk-uniphier.h37 u32 vals[UNIPHIER_CLK_MUX_MAX_PARENTS]; member in struct:uniphier_clk_mux_data
H A Dclk-uniphier-mio.c46 .vals = { \
H A Dclk-uniphier-core.c53 val |= mux->vals[i];
70 if ((mux->masks[i] & val) == mux->vals[i])
/u-boot/drivers/ddr/marvell/axp/
H A Dddr3_init.c793 while (ddr_mode->vals[j].reg_addr != 0) {
795 reg_write(ddr_mode->vals[j].reg_addr,
796 ddr_mode->vals[j].reg_value);
798 if (ddr_mode->vals[j].reg_addr ==
H A Dddr3_hw_training.h312 MV_DRAM_TRAINING_INIT *vals; member in struct:dram_modes
/u-boot/tools/dtoc/
H A Ddtb_platdata.py607 vals = []
623 vals.append('\t{%d, {%s}}' % (target_node.idx,
625 for val in vals:
629 vals.append(get_value(prop.type, val))
632 for i in range(0, len(vals), 8):
635 self.buf(', '.join(vals[i:i + 8]))
/u-boot/drivers/gpio/
H A Dgpio-uclass.c1045 int vals[NUM_OPTIONS]; local
1071 vals[i] = ret;
1074 log_debug("values: %x %x, count = %d\n", vals[0], vals[1], count);
1076 uint pd = vals[PULLDOWN] & mask ? 1 : 0;
1077 uint pu = vals[PULLUP] & mask ? 1 : 0;
/u-boot/tools/patman/
H A Dstatus.py34 def to_int(vals):
38 vals (list): List of strings
43 out = [int(val) if val.isdigit() else 0 for val in vals]
/u-boot/tools/binman/
H A Dftest.py3893 vals = collections.defaultdict(list)
3896 vals[mat.group(1)].append(mat.group(2))
3900 self.assertIn('Image 0 (kernel)', vals)
3901 self.assertIn('Hash value', vals)
3902 data_sizes = vals.get('Data Size')
6977 vals = struct.unpack('<LLQLL', spl_data)
6982 self.assertEqual(elf.BINMAN_SYM_MAGIC_VALUE, vals[0])
6983 self.assertEqual(base, vals[1])
6984 self.assertEqual(spl2.offset, vals[2])
6986 self.assertEqual(0x10 + u_boot.image_pos, vals[
[all...]
/u-boot/common/
H A Dcli_hush_upstream.c10517 char **vals; local
10520 vals = (char**)encoded_dollar_at_argv;
10527 vals = pi->next->cmds[0].argv;
10530 debug_print_strings("for_list made from", vals);
10531 for_list = expand_strvec_to_strvec(vals);
/u-boot/include/
H A Dec_commands.h1794 } vals[23]; member in struct:ec_response_lightbar::__anon26::__ec_todo_unpacked

Completed in 145 milliseconds