Searched refs:ASMBitLastSetU32 (Results 1 - 13 of 13) sorted by relevance

/vbox/include/VBox/vmm/
H A Dvmcpuset.h99 u = ASMBitLastSetU32(u);
/vbox/src/VBox/Runtime/testcase/
H A DtstRTBitOperations.cpp378 CHECK(ASMBitLastSetU32(0) == 0);
379 CHECK(ASMBitLastSetU32(1) == 1);
380 CHECK(ASMBitLastSetU32(0x80000000) == 32);
381 CHECK(ASMBitLastSetU32(0xffffffff) == 32);
382 CHECK(ASMBitLastSetU32(RT_BIT(23) | RT_BIT(11)) == 24);
384 CHECK(ASMBitLastSetU32(1 << i) == (unsigned)i + 1);
H A DtstRTAvl.cpp259 *pKey = ASMBitLastSetU32(*pu32Cur) - 1 + (uint32_t)((pu32Cur - pu32Start) * 32);
/vbox/src/VBox/Runtime/common/asm/
H A Dasm-fake.cpp444 RTDECL(unsigned) ASMBitLastSetU32(uint32_t u32) function
/vbox/include/iprt/
H A Duint128.h1267 cBits = 96 + ASMBitLastSetU32(pValue->DWords.dw3);
1269 cBits = 64 + ASMBitLastSetU32(pValue->DWords.dw2);
1274 cBits = 32 + ASMBitLastSetU32(pValue->DWords.dw1);
1276 cBits = 0 + ASMBitLastSetU32(pValue->DWords.dw0);
H A Dasm.h4771 DECLASM(unsigned) ASMBitLastSetU32(uint32_t u32);
4773 DECLINLINE(unsigned) ASMBitLastSetU32(uint32_t u32) function
4822 return ASMBitLastSetU32((uint32_t)i32);
/vbox/src/VBox/Runtime/common/string/
H A Dstrcache.cpp527 uint32_t iList = (ASMBitLastSetU32(pFree->cbFree) - 1) - RTSTRCACHE_MERGED_THRESHOLD_BIT;
556 uint32_t iList = ASMBitLastSetU32(cbEntry) - 1;
/vbox/src/VBox/Runtime/common/math/
H A Dbignum.cpp143 return ASMBitLastSetU32((uint32_t)(uElement >> 32)) + 32;
144 return ASMBitLastSetU32((uint32_t)uElement);
146 return ASMBitLastSetU32(uElement);
/vbox/src/VBox/Devices/Bus/
H A DDevPCI.cpp1791 int iLastSet = ASMBitLastSetU32(cbRegion);
H A DDevPciIch9.cpp1019 int iLastSet = ASMBitLastSetU32(cbRegion);
/vbox/src/VBox/Devices/PC/
H A DDevAPIC.cpp255 u = ASMBitLastSetU32(u);
/vbox/src/VBox/VMM/VMMR3/
H A DPGMPhys.cpp711 unsigned cMaxDepth = ASMBitLastSetU32(cRanges);
H A DPDMDevHlp.cpp1319 int iLastSet = ASMBitLastSetU32(cbRegion);

Completed in 203 milliseconds