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

Function dlmemalign

lib/dlmalloc/malloc.c:5256–5261  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5254}
5255
5256void* dlmemalign(size_t alignment, size_t bytes) {
5257 if (alignment <= MALLOC_ALIGNMENT) {
5258 return dlmalloc(bytes);
5259 }
5260 return internal_memalign(gm, alignment, bytes);
5261}
5262
5263int dlposix_memalign(void** pp, size_t alignment, size_t bytes) {
5264 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