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

Function mi_theap_umalloc

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

Source from the content-addressed store, hash-verified

308}
309
310mi_decl_nodiscard mi_decl_restrict void* mi_theap_umalloc(mi_theap_t* theap, size_t size, size_t* usable) mi_attr_noexcept {
311 return _mi_theap_malloc_zero_ex(theap, size, false, 0, usable);
312}
313
314mi_decl_nodiscard mi_decl_restrict void* mi_umalloc(size_t size, size_t* usable) mi_attr_noexcept {
315 return mi_theap_umalloc(_mi_theap_default(), size, usable);

Callers 2

mi_umallocFunction · 0.85
alloc.cFile · 0.85

Calls 1

_mi_theap_malloc_zero_exFunction · 0.85

Tested by

no test coverage detected