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,
261 @upper_half
269 @upper_half
299 @upper_half
327 @upper_half
353 @upper_half
381 @upper_half
464 @upper_half
528 @upper_half
579 @upper_half
[all …]
H A Dutil.py73 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.c1242 bool upper_half) in riscv_pmu_ctr_get_fixed_counters_val() argument
1252 cfg_val = upper_half ? ((uint64_t)env->mcyclecfgh << 32) : in riscv_pmu_ctr_get_fixed_counters_val()
1255 cfg_val = upper_half ? ((uint64_t)env->minstretcfgh << 32) : in riscv_pmu_ctr_get_fixed_counters_val()
1258 cfg_val = upper_half ? in riscv_pmu_ctr_get_fixed_counters_val()
1299 result = upper_half ? curr_val >> 32 : curr_val; in riscv_pmu_ctr_get_fixed_counters_val()
1375 bool upper_half, uint32_t ctr_idx) in riscv_pmu_read_ctr() argument
1378 target_ulong ctr_prev = upper_half ? counter->mhpmcounterh_prev : in riscv_pmu_read_ctr()
1380 target_ulong ctr_val = upper_half ? counter->mhpmcounterh_val : in riscv_pmu_read_ctr()
1398 *val = riscv_pmu_ctr_get_fixed_counters_val(env, ctr_idx, upper_half) - in riscv_pmu_read_ctr()