Home
last modified time | relevance | path

Searched refs:upper_half (Results 1 – 5 of 5) sorted by relevance

/openbmc/qemu/python/qemu/qmp/
H A Dqmp_client.py32 upper_half,
234 @upper_half
258 @upper_half
284 @upper_half
336 @upper_half
390 @upper_half
406 @upper_half
417 @upper_half
423 @upper_half
446 @upper_half
[all …]
H A Dprotocol.py44 upper_half,
262 @upper_half
270 @upper_half
300 @upper_half
329 @upper_half
357 @upper_half
387 @upper_half
470 @upper_half
534 @upper_half
585 @upper_half
[all …]
H A Dutil.py56 def upper_half(func: T) -> T: function
/openbmc/qemu/target/riscv/
H A Dpmu.h40 bool upper_half, uint32_t ctr_idx);
H A Dcsr.c1042 bool upper_half) in riscv_pmu_ctr_get_fixed_counters_val() argument
1052 cfg_val = upper_half ? ((uint64_t)env->mcyclecfgh << 32) : in riscv_pmu_ctr_get_fixed_counters_val()
1055 cfg_val = upper_half ? ((uint64_t)env->minstretcfgh << 32) : in riscv_pmu_ctr_get_fixed_counters_val()
1058 cfg_val = upper_half ? in riscv_pmu_ctr_get_fixed_counters_val()
1099 result = upper_half ? curr_val >> 32 : curr_val; in riscv_pmu_ctr_get_fixed_counters_val()
1161 bool upper_half, uint32_t ctr_idx) in riscv_pmu_read_ctr() argument
1164 target_ulong ctr_prev = upper_half ? counter->mhpmcounterh_prev : in riscv_pmu_read_ctr()
1166 target_ulong ctr_val = upper_half ? counter->mhpmcounterh_val : in riscv_pmu_read_ctr()
1184 *val = riscv_pmu_ctr_get_fixed_counters_val(env, ctr_idx, upper_half) - in riscv_pmu_read_ctr()