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

Function _aligned_realloc

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

Source from the content-addressed store, hash-verified

203 return mi_recalloc_aligned_at(_Block, _Count, _Size, _Alignment, _Offset);
204 }
205 _Success_(return != 0) _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Size) _ACRTIMP _CRTALLOCATOR _CRTRESTRICT
206 void* __cdecl _aligned_realloc(_Pre_maybenull_ _Post_invalid_ void* _Block, _In_ _CRT_GUARDOVERFLOW size_t _Size, _In_ size_t _Alignment) {
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);

Callers

nothing calls this directly

Calls 1

mi_realloc_alignedFunction · 0.85

Tested by

no test coverage detected