Searched refs:hi (Results 1 – 3 of 3) sorted by relevance
| /hypervisor/include/arch/x86/asm/ |
| A D | tsc.h | 21 uint32_t lo, hi; in rdtsc() local 23 asm volatile("rdtsc" : "=a" (lo), "=d" (hi)); in rdtsc() 24 return ((uint64_t)hi << 32U) | lo; in rdtsc()
|
| /hypervisor/dm/vpci/ |
| A D | vdev.c | 107 uint32_t lo, hi, offset; in pci_vdev_update_vbar_base() local 119 hi = pci_vdev_read_vcfg(vdev, (offset + 4U), 4U); in pci_vdev_update_vbar_base() 120 base |= ((uint64_t)hi << 32U); in pci_vdev_update_vbar_base()
|
| A D | pci_pt.c | 401 uint32_t size32, offset, lo, hi = 0U; in init_bars() local 448 hi = pci_pdev_read_cfg(pbdf, offset + 4U, 4U); in init_bars() 449 vbar->base_hpa |= ((uint64_t)hi << 32U); in init_bars() 474 pci_pdev_write_cfg(pbdf, offset, 4U, hi); in init_bars() 490 hi = (uint32_t)(vdev->pci_dev_config->vbar_base[idx - 1U] >> 32U); in init_bars() 495 pci_vdev_write_vbar(vdev, idx, hi); in init_bars()
|
Completed in 9 milliseconds