Home
last modified time | relevance | path

Searched refs:val_type (Results 1 – 3 of 3) sorted by relevance

/openbmc/openbmc/poky/scripts/
H A Dbuildstats-diff118 def print_task_diff(bs1, bs2, val_type, min_val=0, min_absdiff=0, sort_by=('absdiff',), only_tasks=… argument
132 if 'time' in val_type:
137 elif 'bytes' in val_type and human_readable:
143 elif 'ops' in val_type and human_readable:
157 total += getattr(bs_task, val_type)
168 tasks_diff = diff_buildstats(bs1, bs2, val_type, min_val, min_absdiff, only_tasks)
180 val_type.upper() + '1', val_type.upper() + '2')]
205 print("\nCumulative {}:".format(val_type))
/openbmc/qemu/tcg/
H A Dtcg.c2791 ts->val_type = val; in tcg_reg_alloc_start()
4635 if (ts->val_type == TEMP_VAL_REG) { in set_temp_val_reg()
4645 ts->val_type = TEMP_VAL_REG; in set_temp_val_reg()
4653 if (ts->val_type == TEMP_VAL_REG) { in set_temp_val_nonreg()
4658 ts->val_type = type; in set_temp_val_nonreg()
4705 switch (ts->val_type) { in temp_sync()
4872 switch (ts->val_type) { in temp_load()
4923 tcg_debug_assert(ts->val_type == TEMP_VAL_MEM || temp_readonly(ts)); in temp_save()
4947 tcg_debug_assert(ts->val_type != TEMP_VAL_REG in sync_globals()
4968 tcg_debug_assert(ts->val_type == TEMP_VAL_DEAD); in tcg_reg_alloc_bb_end()
[all …]
/openbmc/qemu/include/tcg/
H A Dtcg.h285 TCGTempVal val_type:8; member