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