/vbox/include/iprt/ |
H A D | uint128.h | 54 return pValue->s.Hi == 0 74 pResult->s.Hi = 0; 95 pResult->s.Hi = UINT64_MAX; 119 pResult->s.Hi = pValue1->s.Hi + pValue2->s.Hi; 122 pResult->s.Hi++; 137 pResult->s.Hi = pValue1->s.Hi; 140 pResult->s.Hi [all...] |
H A D | asm-math.h | 145 * Prod = F1.s.Lo*F2.s.Lo + F1.s.Hi*F2.s.Lo*4G 146 * + F1.s.Lo*F2.s.Hi*4G + F1.s.Hi*F2.s.Hi*4G*4G 157 Tmp1.u = ASMMult2xU32RetU64(F1.s.Hi, F2.s.Lo); 160 Prod.s.Hi = Tmp1.s.Hi; 161 Prod.s.Hi += u64Tmp >> 32; /* carry */ 163 Tmp1.u = ASMMult2xU32RetU64(F1.s.Lo, F2.s.Hi); 168 u64Tmp += Tmp1.s.Hi; [all...] |
H A D | types.h | 236 uint64_t Hi; member in struct:uint128_s 240 uint64_t Hi; 255 int64_t Hi; member in struct:int128_s 259 int64_t Hi; 281 uint8_t Hi; member in struct:RTUINT16U::__anon575 285 uint8_t Hi; 302 /** Hi/Low view. */ 306 uint16_t Hi; member in struct:RTUINT32U::__anon576 310 uint16_t Hi; 345 /** Hi/Lo 349 uint32_t Hi; member in struct:RTUINT64U::__anon578 410 uint64_t Hi; member in struct:RTUINT128U::__anon581 [all...] |
H A D | asm-amd64-x86.h | 611 __asm__ __volatile__("rdtsc\n\t" : "=a" (u.s.Lo), "=d" (u.s.Hi)); 620 mov [u.s.Hi], edx 644 /*__asm__ __volatile__("rdtscp\n\t" : "=a" (u.s.Lo), "=d" (u.s.Hi), "=c" (*puAux)); */ 645 __asm__ __volatile__(".byte 0x0f,0x01,0xf9\n\t" : "=a" (u.s.Lo), "=d" (u.s.Hi), "=c" (*puAux)); 654 mov [u.s.Hi], edx 1876 "=d" (u.s.Hi) 1888 mov [u.s.Hi], edx 1915 "d" (u.s.Hi), 1925 mov edx, [u.s.Hi] 1950 "=d" (u.s.Hi) [all...] |
H A D | cdefs.h | 1787 #define RT_MAKE_U64(Lo, Hi) ( (uint64_t)((uint32_t)(Hi)) << 32 | (uint32_t)(Lo) ) 1814 #define RT_MAKE_U32(Lo, Hi) \ 1815 ((uint32_t)( (uint32_t)((uint16_t)(Hi)) << 16 \ 1830 #define RT_MAKE_U16(Lo, Hi) \ 1831 ((uint16_t)( (uint16_t)((uint8_t)(Hi)) << 8 \
|
/vbox/src/VBox/Runtime/common/checksum/ |
H A D | alt-sha512.cpp | 105 pCtx->AltPrivate.cbMessage.s.Hi = 0; 438 Assert(pCtx->AltPrivate.cbMessage.s.Hi < UINT64_MAX / 8); 453 pCtx->AltPrivate.cbMessage.s.Hi++; 480 pCtx->AltPrivate.cbMessage.s.Hi++; 498 pCtx->AltPrivate.cbMessage.s.Hi++; 512 pCtx->AltPrivate.cbMessage.s.Hi++; 526 Assert(pCtx->AltPrivate.cbMessage.s.Hi < UINT64_MAX / 8); 533 cMessageBits.s.Hi <<= 3; 534 cMessageBits.s.Hi |= cMessageBits.s.Lo >> 61; 551 pCtx->AltPrivate.auW[14] = RT_H2BE_U64(cMessageBits.s.Hi); [all...] |
/vbox/src/VBox/Runtime/r3/nt/ |
H A D | time-nt.cpp | 117 uint64_t uResult = Tmp128.s.Hi >> uQpcInterruptTimeIncrementShift;
|
/vbox/src/VBox/Runtime/common/math/ |
H A D | bignum.cpp | 211 if (pValue2x->s.Hi) 217 pDst->pauElements[1] = pValue2x->s.Hi; 237 uDividend.s.Hi = uDividendHi; 241 uDivisor.s.Hi = uDivisorHi; 257 uDividend.s.Hi = uDividendHi; 262 uDivisor2x.s.Hi = 0; 278 puValue->s.Hi--; 1921 if (puQhat->s.Lo == RTBIGNUM_ELEMENT_MAX && puQhat->s.Hi == 0) 1929 TmpRight.s.Hi = uRhat; 1970 uTmp1.s.Hi [all...] |
H A D | RTUInt128MulByU64.asm | 66 ; puValue1->s.Hi * uValue2
|
/vbox/src/VBox/Main/include/ |
H A D | netif.h | 103 if (aAddrPtr->s.Lo || aAddrPtr->s.Hi)
|
/vbox/include/VBox/RemoteDesktop/ |
H A D | VRDEVideoIn.h | 351 #define VRDE_VIDEOIN_CTRLSEL_MAKE(Lo, Hi) RT_MAKE_U16(Lo, Hi) 353 #define VRDE_VIDEOIN_CTRLSEL_MAKE(Lo, Hi) ((uint16_t)( (uint16_t)((uint8_t)(Hi)) << 8 | (uint8_t)(Lo) ))
|
/vbox/src/VBox/Runtime/testcase/ |
H A D | tstRTBigNum.cpp | 1280 i, s_aTests[i].uResult.s.Hi, s_aTests[i].uResult.s.Lo, uResult.s.Hi, uResult.s.Lo ); 1355 i, s_aTests[i].uResult.s.Hi, s_aTests[i].uResult.s.Lo, uResult.s.Hi, uResult.s.Lo ); 1362 if (s_aTests[i].uAddend.s.Hi == 0) 1374 if (s_aTests[i].uAugend.s.Hi == 0) 1457 i, s_aTests[i].uResult.s.Hi, s_aTests[i].uResult.s.Lo, uResult.s.Hi, uResult.s.Lo ); 1459 if (s_aTests[i].uFactor2.s.Hi == 0) 1466 if (s_aTests[i].uFactor1.s.Hi [all...] |
/vbox/src/VBox/Runtime/common/string/ |
H A D | strformatnum.cpp | 164 size_t cchFirst = RTStrFormatNumber(szTmp, pu128->s.Hi, 16, 0, 0, fFlags | RTSTR_F_64BIT);
|
/vbox/src/VBox/Main/src-server/darwin/ |
H A D | NetIf-darwin.cpp | 119 if (pNew->IPv6Address.s.Lo || pNew->IPv6Address.s.Hi) 191 if (!pInfo->IPv6Address.s.Lo && !pInfo->IPv6Address.s.Hi)
|
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/ |
H A D | wtypes.h | 575 LONG Hi; member in struct:tagCY::__anon14618 579 LONG Hi;
|
H A D | mapidefs.h | 50 LONG Hi; member in struct:tagCY::__anon13645 54 LONG Hi;
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/ |
H A D | wtypes.h | 575 LONG Hi; member in struct:tagCY::__anon1923 579 LONG Hi;
|
H A D | mapidefs.h | 53 LONG Hi; member in struct:tagCY::__anon1022 57 LONG Hi;
|
/vbox/src/VBox/Devices/PC/ |
H A D | DevHPET.cpp | 890 rc = hpetTimerRegRead32(pThis, iTimer, iTimerReg + 4, &pValue->s.Hi); 897 rc = hpetConfigRegRead32(pThis, idxReg + 4, &pValue->s.Hi); 945 rc = hpetTimerRegWrite32(pThis, iTimer, iTimerReg + 4, uValue.s.Hi); 951 rc = hpetConfigRegWrite32(pThis, idxReg + 4, uValue.s.Hi);
|
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellCommandLib/ |
H A D | ConsistMapping.c | 32 UINTN Hi; member in struct:__anon12783 1040 Function to determine if a device path node is Hi or not. 1044 @retval TRUE The node is Hi. 1045 @retval FALSE The node is not Hi. 1078 Function to convert a standard device path structure into a Hi version. 1082 @return the device path portion that is Hi. 1331 MappingInfo.Hi = Index; 1348 CatPrint (&Str, L"%d", (UINTN) MappingInfo.Hi);
|
/vbox/src/VBox/Main/src-server/freebsd/ |
H A D | NetIf-freebsd.cpp | 160 if (!pInfo->IPv6Address.s.Lo && !pInfo->IPv6Address.s.Hi)
|
/vbox/src/VBox/Devices/VMMDev/ |
H A D | VMMDevTesting.cpp | 360 pThis->TestingData.Value.u64Value.s.Hi = u32;
|
/vbox/src/VBox/VMM/VMMR3/ |
H A D | DBGFReg.cpp | 612 uRet.s.Hi = (uint64_t)InVal.lrd / _4G / _4G; 615 uRet.s.Hi = 0; 1654 pu128->s.Hi = pu128->s.Lo = 0; 2004 Mask.u128.s.Hi = UINT64_MAX;
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/ |
H A D | device.c | 2351 UINT Hi = LIGHTMAP_HASHFUNC(Index); local 2355 TRACE("(%p) : Idx(%d), pLight(%p). Hash index is %d\n", This, Index, pLight, Hi); 2389 LIST_FOR_EACH(e, &This->updateStateBlock->lightMap[Hi]) 2403 list_add_head(&This->updateStateBlock->lightMap[Hi], &object->entry); 2497 DWORD Hi = LIGHTMAP_HASHFUNC(Index); local 2501 LIST_FOR_EACH(e, &This->stateBlock->lightMap[Hi]) 2525 UINT Hi = LIGHTMAP_HASHFUNC(Index); local 2529 LIST_FOR_EACH(e, &This->updateStateBlock->lightMap[Hi]) 2544 LIST_FOR_EACH(e, &This->updateStateBlock->lightMap[Hi]) 2610 UINT Hi local [all...] |
/vbox/src/VBox/HostDrivers/Support/darwin/ |
H A D | SUPDrv-darwin.cpp | 1077 pArgs->rc = g_pfnRdMsrCarefully(pArgs->uMsr, &pArgs->uValue.s.Lo, &pArgs->uValue.s.Hi);
|