| 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) |
nothing calls this directly
no test coverage detected