MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / IsFree

Method IsFree

3rdparty/d3d12memalloc/src/D3D12MemAlloc.cpp:4634–4634  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4632 void MarkFree() { prevFree = NULL; }
4633 void MarkTaken() { prevFree = this; }
4634 bool IsFree() const { return prevFree != this; }
4635 void*& PrivateData() { D3D12MA_HEAVY_ASSERT(!IsFree()); return privateData; }
4636 Block*& PrevFree() { return prevFree; }
4637 Block*& NextFree() { D3D12MA_HEAVY_ASSERT(IsFree()); return nextFree; }

Callers 15

ValidateMethod · 0.45
GetAllocationInfoMethod · 0.45
AllocMethod · 0.45
FreeMethod · 0.45
GetNextAllocationMethod · 0.45
GetNextFreeRegionSizeMethod · 0.45
AddDetailedStatisticsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected