Clears a bit in the physical memory bitmap
| 31 | |
| 32 | // Clears a bit in the physical memory bitmap |
| 33 | inline void ClearBit(uint64_t bit) { |
| 34 | physicalMemoryBitmap[bit >> 5] &= ~ (1 << (bit % 32)); |
| 35 | } |
| 36 | |
| 37 | // Tests a bit in the physical memory bitmap |
| 38 | inline bool TestBit(uint64_t bit) { |
no outgoing calls
no test coverage detected