2PL_FORCE_INLINE
void* plAllocPolicyAlignedHeap::Allocate(
size_t uiSize,
size_t uiAlign)
6 void* ptr = _aligned_malloc(uiSize, uiAlign);
7 PL_CHECK_ALIGNMENT(ptr, uiAlign);
12PL_ALWAYS_INLINE
void plAllocPolicyAlignedHeap::Deallocate(
void* pPtr)
constexpr PL_ALWAYS_INLINE T Max(T f1, T f2)
Returns the greater value, f1 or f2.
Definition Math_inl.h:39