MCPcopy Create free account
hub / github.com/OpenStarbound/OpenStarbound / malloc

Function malloc

source/extern/malloc.c:77–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75#if USE_IMPLEMENT
76
77extern inline RPMALLOC_RESTRICT void* RPMALLOC_CDECL malloc(size_t size) { return rpmalloc(size); }
78extern inline RPMALLOC_RESTRICT void* RPMALLOC_CDECL calloc(size_t count, size_t size) { return rpcalloc(count, size); }
79extern inline RPMALLOC_RESTRICT void* RPMALLOC_CDECL realloc(void* ptr, size_t size) { return rprealloc(ptr, size); }
80extern inline void* RPMALLOC_CDECL reallocf(void* ptr, size_t size) { return rprealloc(ptr, size); }

Callers 4

XXH_mallocFunction · 0.70
readAudioDataMethod · 0.50
InitMethod · 0.50

Calls 1

rpmallocFunction · 0.85

Tested by 1

InitMethod · 0.40