MCPcopy Create free account
hub / github.com/FEX-Emu/FEX / aligned_alloc

Function aligned_alloc

FEXCore/Source/Utils/AllocatorHooks.cpp:41–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39 return ::je_malloc_usable_size(ptr);
40}
41void* aligned_alloc(size_t a, size_t s) {
42 return ::je_aligned_alloc(a, s);
43}
44void aligned_free(void* ptr) {
45 return ::je_free(ptr);
46}

Callers 7

operator newMethod · 0.85
allocateMethod · 0.85
make_uniqueFunction · 0.85
TestAllocFunction · 0.85
convertFunction · 0.85
fex_custom_repack_entryFunction · 0.85
convertFunction · 0.85

Calls

no outgoing calls

Tested by 1

TestAllocFunction · 0.68