- Timestamp:
- Sep 20, 2023 12:27:00 PM (18 months ago)
- svn:sync-xref-src-repo-rev:
- 159165
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/mempage-heap.cpp
r101162 r101192 250 250 if (pChunk->cFree > 0) 251 251 { 252 int idxBlock = ASMBitFirstClear(&pChunk->bmAlloc[0], RT_MIN(RTHEAPPAGEBLOCKALLOCCHUNK_MAX_BLOCKS, pChunk->cBlocks)); 252 uint32_t const cBits = RT_ALIGN_32(pChunk->cBlocks, 64); 253 int idxBlock = ASMBitFirstClear(&pChunk->bmAlloc[0], RT_MIN(RTHEAPPAGEBLOCKALLOCCHUNK_MAX_BLOCKS, cBits)); 253 254 if (idxBlock >= 0) 254 255 {
Note:
See TracChangeset
for help on using the changeset viewer.