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

Function dlmemalign

system/lib/dlmalloc.c:5363–5368  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5361}
5362
5363void* dlmemalign(size_t alignment, size_t bytes) {
5364 if (alignment <= MALLOC_ALIGNMENT) {
5365 return dlmalloc(bytes);
5366 }
5367 return internal_memalign(gm, alignment, bytes);
5368}
5369
5370int dlposix_memalign(void** pp, size_t alignment, size_t bytes) {
5371 void* mem = 0;

Callers 2

dlvallocFunction · 0.85
dlpvallocFunction · 0.85

Calls 2

dlmallocFunction · 0.85
internal_memalignFunction · 0.85

Tested by

no test coverage detected