Searched refs:ulBit (Results 1 - 4 of 4) sorted by relevance

/vbox/include/iprt/
H A Dasm.h4496 unsigned long ulBit = 0; local
4497 if (_BitScanForward(&ulBit, u32))
4498 return ulBit + iBitPrev;
4650 unsigned long ulBit = 0; local
4651 if (_BitScanForward(&ulBit, u32))
4652 return ulBit + iBitPrev;
/vbox/src/VBox/VMM/VMMR0/
H A DHMSVMR0.cpp609 unsigned ulBit; local
623 ulBit = uMsr * 2;
629 ulBit = (uMsr - 0xC0000000) * 2;
636 ulBit = (uMsr - 0xC0001000) * 2;
645 Assert(ulBit < 0x3fff /* 16 * 1024 - 1 */);
647 ASMBitSet(pbMsrBitmap, ulBit);
649 ASMBitClear(pbMsrBitmap, ulBit);
652 ASMBitSet(pbMsrBitmap, ulBit + 1);
654 ASMBitClear(pbMsrBitmap, ulBit + 1);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dwinternl.h2617 static inline BOOLEAN RtlCheckBit(PCRTL_BITMAP lpBits, ULONG ulBit) argument
2619 if (lpBits && ulBit < lpBits->SizeOfBitMap &&
2620 lpBits->Buffer[ulBit >> 5] & (1 << (ulBit & 31)))
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dwinternl.h2557 static inline BOOLEAN RtlCheckBit(PCRTL_BITMAP lpBits, ULONG ulBit) argument
2559 if (lpBits && ulBit < lpBits->SizeOfBitMap &&
2560 lpBits->Buffer[ulBit >> 5] & (1 << (ulBit & 31)))

Completed in 103 milliseconds