Sets a bit in the physical memory bitmap
| 26 | |
| 27 | // Sets a bit in the physical memory bitmap |
| 28 | inline void SetBit(uint64_t bit) { |
| 29 | physicalMemoryBitmap[bit >> 5] |= (1 << (bit % 32)); |
| 30 | } |
| 31 | |
| 32 | // Clears a bit in the physical memory bitmap |
| 33 | inline void ClearBit(uint64_t bit) { |
no outgoing calls
no test coverage detected