| 303 | |
| 304 | _IRQL_requires_max_(APC_LEVEL) |
| 305 | PVOID HeapObject::AllocArray(SIZE_T ElementSize, SIZE_T ElementsCount) const { |
| 306 | return AllocHeap(HeapHandle, ElementSize * ElementsCount); |
| 307 | } |
| 308 | } |
| 309 | |
| 310 | namespace PhysicalMemory { |
nothing calls this directly
no test coverage detected