MCPcopy Create free account
hub / github.com/defold/defold / AlignedFree

Function AlignedFree

engine/dlib/src/dlib/memory.cpp:59–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57 }
58
59 void AlignedFree(void* memptr)
60 {
61#if defined(__GNUC__)
62 free(memptr);
63#elif defined(_MSC_VER)
64 _aligned_free(memptr);
65#else
66 #error "dmMemory::AlignedFree not implemented for this platform."
67#endif
68 }
69}

Callers 15

PropertyContainerDestroyFunction · 0.85
TEST_FFunction · 0.85
LoadMessageFunction · 0.85
LoadMessageFromFileFunction · 0.85
FreeMessageFunction · 0.85
TESTFunction · 0.85
ReadFileFunction · 0.85
FreeBufferFunction · 0.85
TESTFunction · 0.85
ReadFileFunction · 0.85
PlaySoundFunction · 0.85

Calls 1

freeFunction · 0.85

Tested by 11

TEST_FFunction · 0.68
TESTFunction · 0.68
ReadFileFunction · 0.68
TESTFunction · 0.68
ReadFileFunction · 0.68
PlaySoundFunction · 0.68
TEST_PFunction · 0.68
TEST_FFunction · 0.68
TEST_PFunction · 0.68
TEST_FFunction · 0.68
TEST_FFunction · 0.68