Searched refs:prev_value (Results 1 – 6 of 6) sorted by relevance
/openbmc/linux/include/trace/events/ |
H A D | power.h | 430 TP_PROTO(enum pm_qos_req_action action, int prev_value, int curr_value), 432 TP_ARGS(action, prev_value, curr_value), 436 __field( int, prev_value ) 442 __entry->prev_value = prev_value; 451 __entry->prev_value, __entry->curr_value) 456 TP_PROTO(enum pm_qos_req_action action, int prev_value, int curr_value), 458 TP_ARGS(action, prev_value, curr_value) 463 TP_PROTO(enum pm_qos_req_action action, int prev_value, int curr_value), 465 TP_ARGS(action, prev_value, curr_value), 472 __entry->prev_value, __entry->curr_value)
|
/openbmc/linux/kernel/power/ |
H A D | qos.c | 101 int prev_value, curr_value, new_value; in pm_qos_update_target() local 106 prev_value = pm_qos_get_value(c); in pm_qos_update_target() 137 trace_pm_qos_update_target(action, prev_value, curr_value); in pm_qos_update_target() 139 if (prev_value == curr_value) in pm_qos_update_target() 179 s32 prev_value, curr_value; in pm_qos_update_flags() local 183 prev_value = list_empty(&pqf->list) ? 0 : pqf->effective_flags; in pm_qos_update_flags() 207 trace_pm_qos_update_flags(action, prev_value, curr_value); in pm_qos_update_flags() 209 return prev_value != curr_value; in pm_qos_update_flags()
|
/openbmc/openbmc/poky/meta/recipes-devtools/apt/apt/ |
H A D | triehash | 606 my $prev_value; 620 $value //= defined $prev_value ? $prev_value + 1 : 0; 631 $prev_value = $value;
|
/openbmc/linux/Documentation/trace/ |
H A D | events-power.rst | 78 pm_qos_update_target "action=%s prev_value=%d curr_value=%d" 79 pm_qos_update_flags "action=%s prev_value=0x%x curr_value=0x%x"
|
/openbmc/linux/drivers/media/platform/renesas/rcar-vin/ |
H A D | rcar-csi2.c | 1468 const struct rcsi2_mbps_reg *prev_value = NULL; in rcsi2_phtw_write_mbps() local 1473 prev_value = value; in rcsi2_phtw_write_mbps() 1476 if (prev_value && in rcsi2_phtw_write_mbps() 1477 ((mbps - prev_value->mbps) <= (value->mbps - mbps))) in rcsi2_phtw_write_mbps() 1478 value = prev_value; in rcsi2_phtw_write_mbps()
|
/openbmc/qemu/hw/arm/ |
H A D | omap2.c | 1981 int prev_value; in omap_sysctl_write8() local 1988 prev_value = s->padconf[pad_offset]; in omap_sysctl_write8() 1989 prev_value &= ~(0xff << (byte_offset * 8)); in omap_sysctl_write8() 1990 prev_value |= ((value & 0x1f1f1f1f) << (byte_offset * 8)) & 0x1f1f1f1f; in omap_sysctl_write8() 1991 s->padconf[pad_offset] = prev_value; in omap_sysctl_write8()
|