MCPcopy Index your code
hub / github.com/dcodeIO/webassembly / dlvalloc

Function dlvalloc

lib/dlmalloc/malloc.c:5286–5291  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5284}
5285
5286void* dlvalloc(size_t bytes) {
5287 size_t pagesz;
5288 ensure_initialization();
5289 pagesz = mparams.page_size;
5290 return dlmemalign(pagesz, bytes);
5291}
5292
5293void* dlpvalloc(size_t bytes) {
5294 size_t pagesz;

Callers

nothing calls this directly

Calls 1

dlmemalignFunction · 0.85

Tested by

no test coverage detected