| 326 | |
| 327 | _IRQL_requires_max_(DISPATCH_LEVEL) |
| 328 | PVOID AllocPhysicalMemory(PVOID64 HighestAcceptableAddress, SIZE_T Size) { |
| 329 | return MmAllocateContiguousMemory( |
| 330 | Size, |
| 331 | *reinterpret_cast<PHYSICAL_ADDRESS*>(&HighestAcceptableAddress) |
| 332 | ); |
| 333 | } |
| 334 | |
| 335 | _IRQL_requires_max_(DISPATCH_LEVEL) |
| 336 | PVOID AllocPhysicalMemorySpecifyCache( |
nothing calls this directly
no outgoing calls
no test coverage detected