MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / _aligned_malloc

Function _aligned_malloc

3rd/mimalloc-2.0.9/src/alloc-override.c:263–263  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

261int reallocarr(void* p, size_t count, size_t size) { return mi_reallocarr(p, count, size); }
262void* memalign(size_t alignment, size_t size) { return mi_memalign(alignment, size); }
263void* _aligned_malloc(size_t alignment, size_t size) { return mi_aligned_alloc(alignment, size); }
264
265#if defined(__wasi__)
266 // forward __libc interface (see PR #667)

Callers 1

aligned_newFunction · 0.85

Calls 1

mi_aligned_allocFunction · 0.85

Tested by

no test coverage detected