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

Function _aligned_recalloc

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

Source from the content-addressed store, hash-verified

207 return mi_realloc_aligned(_Block, _Size, _Alignment);
208 }
209 _Success_(return != 0) _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Count * _Size) _ACRTIMP _CRTALLOCATOR _CRTRESTRICT
210 void* __cdecl _aligned_recalloc(_Pre_maybenull_ _Post_invalid_ void* _Block, _In_ _CRT_GUARDOVERFLOW size_t _Count, _In_ _CRT_GUARDOVERFLOW size_t _Size, _In_ size_t _Alignment) {
211 return mi_recalloc_aligned(_Block, _Count, _Size, _Alignment);
212 }
213#else
214 // On all other systems forward allocation primitives to our API
215 mi_decl_export void* malloc(size_t size) MI_FORWARD1(mi_malloc, size)

Callers

nothing calls this directly

Calls 1

mi_recalloc_alignedFunction · 0.85

Tested by

no test coverage detected