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

Function _recalloc_base

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

Source from the content-addressed store, hash-verified

171 return mi_calloc(_Count, _Size);
172 }
173 _Success_(return != 0) _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Count * _Size) _ACRTIMP _CRTALLOCATOR _CRTRESTRICT
174 void* __cdecl _recalloc_base(_Pre_maybenull_ _Post_invalid_ void* _Block, _In_ size_t _Count, _In_ size_t _Size) {
175 return mi_recalloc(_Block, _Count, _Size);
176 }
177 _Success_(return != 0) _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Count * _Size) _ACRTIMP _CRTALLOCATOR _CRTRESTRICT
178 void* __cdecl _recalloc(_Pre_maybenull_ _Post_invalid_ void* _Block, _In_ _CRT_GUARDOVERFLOW size_t _Count, _In_ _CRT_GUARDOVERFLOW size_t _Size) {
179 return mi_recalloc(_Block, _Count, _Size);

Callers

nothing calls this directly

Calls 1

mi_recallocFunction · 0.85

Tested by

no test coverage detected