Searched refs:RT_HI_U32 (Results 1 - 9 of 9) sorted by relevance

/vbox/src/VBox/Devices/PC/
H A DDevHPET.cpp562 pHpetTimer->u64Period = RT_MAKE_U64(u32NewValue, RT_HI_U32(pHpetTimer->u64Period));
563 pHpetTimer->u64Cmp = RT_MAKE_U64(u32NewValue, RT_HI_U32(pHpetTimer->u64Cmp));
805 pThis->u64HpetCounter = RT_MAKE_U64(u32NewValue, RT_HI_U32(pThis->u64HpetCounter));
1198 pThis->u32Period = RT_HI_U32(u64CapPer);
/vbox/src/VBox/Main/src-client/
H A DMouseImpl.cpp716 uint32_t u32Hi = RT_HI_U32(paContacts[i]);
981 uint32_t u32Hi = RT_HI_U32(paContacts[i]);
/vbox/include/iprt/
H A Dcdefs.h1722 /** @def RT_HI_U32
1725 # define RT_HI_U32(a) __extension__ ({ AssertCompile(sizeof((a)) == sizeof(uint64_t)); (uint32_t)((a) >> 32); }) macro
1727 # define RT_HI_U32(a) ( (uint32_t)((a) >> 32) ) macro
1762 * @deprecated Use RT_HI_U32. */
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/
H A DUIMachineView.cpp873 return QSize(int(RT_HI_U32(u64Size)), int(RT_LO_U32(u64Size)));
/vbox/src/VBox/ValidationKit/utils/cpu/
H A Dcidet-app.cpp465 pThis->Core.ActualCtx.aSRegs[X86_SREG_FS] = (uint16_t)RT_HI_U32(pCtx->uc_mcontext.gregs[REG_CSGSFS]);
/vbox/src/VBox/VMM/VMMR3/
H A DCPUMR3CpuId.cpp3030 pCurLeaf->uEdx &= RT_HI_U32(fGuestXcr0Mask);
5227 pHlp->pfnPrintf(pHlp, "%*s %#010x`%08x\n", cchWidth, pszLeadIn, RT_HI_U32(uVal), RT_LO_U32(uVal));
5230 pHlp->pfnPrintf(pHlp, "%*s %#010x`%08x (", cchWidth, pszLeadIn, RT_HI_U32(uVal), RT_LO_U32(uVal));
/vbox/src/VBox/Devices/Input/
H A DUsbMouse.cpp1510 uint32_t u32Hi = RT_HI_U32(pau64Contacts[i]);
/vbox/src/VBox/VMM/tools/
H A DVBoxCpuReport.cpp2935 RTStrPrintf(s_szBuf, sizeof(s_szBuf), "value=%#x`%08x", RT_HI_U32(uValue), RT_LO_U32(uValue));
2946 RTStrPrintf(s_szBuf, sizeof(s_szBuf), "%s value=%#x`%08x", pszExtra, RT_HI_U32(uValue), RT_LO_U32(uValue));
/vbox/src/VBox/VMM/VMMAll/
H A DIEMAllCImpl.cpp.h6048 pCtx->rdx = RT_HI_U32(pCtx->aXcr[uEcx]);

Completed in 3574 milliseconds