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

Function mi_reallocn

system/lib/mimalloc/src/alloc.c:440–442  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

438}
439
440mi_decl_nodiscard void* mi_reallocn(void* p, size_t count, size_t size) mi_attr_noexcept {
441 return mi_theap_reallocn(_mi_theap_default(),p,count,size);
442}
443
444mi_decl_nodiscard void* mi_urealloc(void* p, size_t newsize, size_t* usable_pre, size_t* usable_post) mi_attr_noexcept {
445 return _mi_theap_realloc_zero(_mi_theap_default(),p,newsize, false, usable_pre, usable_post);

Callers

nothing calls this directly

Calls 2

mi_theap_reallocnFunction · 0.85
_mi_theap_defaultFunction · 0.85

Tested by

no test coverage detected