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

/vbox/src/VBox/Devices/Bus/
H A DDevPciIch9.cpp1019 int iLastSet = ASMBitLastSetU32(cbRegion); local
1020 AssertMsgReturn( iLastSet != 0
1021 && RT_BIT_32(iLastSet - 1) == cbRegion,
1022 ("Invalid cbRegion=%#x iLastSet=%#x (not a power of 2 or 0)\n", cbRegion, iLastSet),
H A DDevPCI.cpp1791 int iLastSet = ASMBitLastSetU32(cbRegion); local
1792 AssertMsgReturn( iLastSet != 0
1793 && RT_BIT_32(iLastSet - 1) == cbRegion,
1794 ("Invalid cbRegion=%#x iLastSet=%#x (not a power of 2 or 0)\n", cbRegion, iLastSet),
/vbox/src/VBox/VMM/VMMR3/
H A DPDMDevHlp.cpp1319 int iLastSet = ASMBitLastSetU32(cbRegion); local
1320 Assert(iLastSet > 0);
1321 uint32_t cbRegionAligned = RT_BIT_32(iLastSet - 1);

Completed in 69 milliseconds