| 423 | } |
| 424 | |
| 425 | static void* mi_theap_rezalloc(mi_theap_t* theap, void* p, size_t newsize) mi_attr_noexcept { |
| 426 | return _mi_theap_realloc_zero(theap, p, newsize, true, NULL, NULL); |
| 427 | } |
| 428 | |
| 429 | static void* mi_theap_recalloc(mi_theap_t* theap, void* p, size_t count, size_t size) mi_attr_noexcept { |
| 430 | size_t total; |
no test coverage detected