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