Searched refs:iBit (Results 26 - 35 of 35) sorted by relevance

12

/vbox/include/VBox/vmm/
H A Dvm.h586 * @param iBit Bit position to check and clear
588 #define VM_FF_TEST_AND_CLEAR(pVM, iBit) (ASMAtomicBitTestAndClear(&(pVM)->fGlobalForcedActions, iBit##_BIT))
596 * @param iBit Bit position to check and clear
598 #define VMCPU_FF_TEST_AND_CLEAR(pVCpu, iBit) (ASMAtomicBitTestAndClear(&(pVCpu)->fLocalForcedActions, iBit##_BIT))
/vbox/src/VBox/Devices/PC/
H A DDevAPIC.cpp195 * @param iBit The bit to test for.
197 DECLINLINE(bool) Apic256BitReg_IsBitSet(PCAPIC256BITREG pReg, unsigned iBit) argument
199 Assert(iBit < 256);
200 return ASMBitTest(&pReg->au32Bitmap[0], iBit);
208 * @param iBit The bit to set.
210 DECLINLINE(void) Apic256BitReg_SetBit(PAPIC256BITREG pReg, unsigned iBit) argument
212 Assert(iBit < 256);
213 return ASMBitSet(&pReg->au32Bitmap[0], iBit);
221 * @param iBit The bit to clear.
223 DECLINLINE(void) Apic256BitReg_ClearBit(PAPIC256BITREG pReg, unsigned iBit) argument
[all...]
/vbox/src/VBox/VMM/VMMR3/
H A DPGM.cpp2159 for (uint32_t iBit = cMaxPhysAddrWidth; iBit < 52; iBit++)
2160 pVM->pgm.s.HCPhysInvMmioPg |= RT_BIT_64(iBit);
2172 for (uint32_t iBit = cMaxPhysAddrWidth; iBit < 64; iBit++)
2173 pVM->pgm.s.GCPhysInvAddrMask |= RT_BIT_64(iBit);
H A DHM.cpp1442 for (unsigned iBit = 0; iBit < 32; iBit++)
1443 if (RT_BIT_32(iBit) & fSvmFeatures)
1444 LogRel(("HM: Reserved bit %u\n", iBit));
/vbox/src/VBox/Devices/Storage/
H A DDrvHostBase.cpp2045 int iBit = RT_C_TO_UPPER(pThis->pszDevice[0]) - 'A';
2046 if ( iBit > 'Z' - 'A'
2053 pThis->fUnitMask = 1 << iBit;
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dpixel.c1764 const GLint iBit = (i + srcPacking->skipPixels) % 8; local
1766 if (b & (1 << iBit))
1779 const GLint iBit = (i + srcPacking->skipPixels) % 8; local
1781 if (b & (128 >> iBit))
/vbox/src/VBox/Runtime/common/dbg/
H A Ddbgmodcodeview.cpp1566 uint32_t iBit = pDirEnt->uSubSectType - kCvSst_Module; local
1567 if (iBit >= 32U || (fSeen & RT_BIT_32(iBit)))
1573 fSeen |= RT_BIT_32(iBit);
/vbox/src/VBox/VMM/testcase/Instructions/
H A DInstructionTestGen.py49 def RT_BIT_32(iBit): # pylint: disable=C0103
51 return 1 << iBit;
52 def RT_BIT_64(iBit): # pylint: disable=C0103
54 return 1 << iBit;
/vbox/src/VBox/VMM/VMMR0/
H A DHMVMXR0.cpp1139 int32_t iBit; local
1150 iBit = uMsr;
1154 iBit = (uMsr - 0xC0000000);
1160 Assert(iBit <= 0x1fff);
1162 ASMBitSet(pbMsrBitmap, iBit);
1164 ASMBitClear(pbMsrBitmap, iBit);
1167 ASMBitSet(pbMsrBitmap + 0x800, iBit);
1169 ASMBitClear(pbMsrBitmap + 0x800, iBit);
1191 int32_t iBit; local
1196 iBit
[all...]
/vbox/src/VBox/Devices/Network/
H A DSrvIntNetR0.cpp5080 for (unsigned iBit = PDMNETWORKGSOTYPE_END; iBit < 32; iBit++)
5081 Assert(!(fGsoCapabilities & RT_BIT_32(iBit)));

Completed in 142 milliseconds

12