Tests a bit in the physical memory bitmap
| 36 | |
| 37 | // Tests a bit in the physical memory bitmap |
| 38 | inline bool TestBit(uint64_t bit) { |
| 39 | return physicalMemoryBitmap[bit >> 5] & (1 << (bit % 32)); |
| 40 | } |
| 41 | |
| 42 | // Finds the first free block in physical memory |
| 43 | uint64_t GetFirstFreeMemoryBlock() { |
nothing calls this directly
no outgoing calls
no test coverage detected