MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / _malloc_base

Function _malloc_base

system/lib/mimalloc/src/alloc-override.c:153–156  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

151 return mi_malloc(_Size);
152 }
153 _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Size) _ACRTIMP _CRTALLOCATOR _CRTRESTRICT
154 void* __cdecl _malloc_base(_In_ size_t _Size) {
155 return mi_malloc(_Size);
156 }
157 _Success_(return != 0) _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Size) _ACRTIMP _CRTALLOCATOR _CRTRESTRICT
158 void* __cdecl _realloc_base(_Pre_maybenull_ _Post_invalid_ void* _Block, _In_ size_t _Size) {
159 return mi_realloc(_Block, _Size);

Callers

nothing calls this directly

Calls 1

mi_mallocFunction · 0.85

Tested by

no test coverage detected