Searched defs:uReg (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Devices/EFI/
H A DDevSmc.cpp791 * @param uReg The register number.
794 static int smcRegData_r(PDEVSMC pThis, uint8_t uReg, uint8_t *pbValue) argument
880 * @param uReg The register number.
883 static int smcRegData_w(PDEVSMC pThis, uint8_t uReg, uint8_t bValue) argument
994 * @param uReg The register number.
997 static int smcRegCmd_w(PDEVSMC pThis, uint8_t uReg, uint8_t bValue) argument
999 LogFlow(("smcRegCmd_w: New command: %#x (old=%#x)\n", bValue, pThis->bCmd)); NOREF(uReg);
1035 * @param uReg The register number.
1038 static int smcRegGen_w(PDEVSMC pThis, uint8_t uReg, uint8_t bValue) argument
1040 Log(("smcRegGen_w: %#04x: %#x -> %#x (write)\n", uReg, pThi
1053 smcRegGen_r(PDEVSMC pThis, uint8_t uReg, uint8_t *pbValue) argument
1068 smcRegFF_w(PDEVSMC pThis, uint8_t uReg, uint8_t bValue) argument
1082 smcRegFF_r(PDEVSMC pThis, uint8_t uReg, uint8_t *pbValue) argument
1196 uint32_t uReg = Port - SMC_PORT_FIRST; local
1238 uint32_t uReg = Port - SMC_PORT_FIRST; local
[all...]
/vbox/src/VBox/VMM/VMMR0/
H A DHMVMXR0.cpp2851 RTCCUINTREG uReg = ASMGetCR0(); local
2852 int rc = VMXWriteVmcsHstN(VMX_VMCS_HOST_CR0, uReg);
2865 uReg = ASMGetCR3();
2866 rc = VMXWriteVmcsHstN(VMX_VMCS_HOST_CR3, uReg);
2870 uReg = ASMGetCR4();
2871 rc = VMXWriteVmcsHstN(VMX_VMCS_HOST_CR4, uReg);
/vbox/src/VBox/Devices/Storage/
H A DDevAHCI.cpp2172 * @param uReg The register to write.
2176 static int ahciRegisterRead(PAHCI pAhci, uint32_t uReg, void *pv, unsigned cb) argument
2185 if (uReg < AHCI_HBA_GLOBAL_SIZE)
2187 iReg = uReg >> 2;
2206 uReg -= AHCI_HBA_GLOBAL_SIZE;
2207 iPort = uReg / AHCI_PORT_REGISTER_SIZE;
2208 iRegOffset = (uReg % AHCI_PORT_REGISTER_SIZE);

Completed in 86 milliseconds