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

Function mi_heap_calloc_aligned

3rd/mimalloc-2.0.9/src/alloc-aligned.c:185–187  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

183}
184
185mi_decl_nodiscard mi_decl_restrict void* mi_heap_calloc_aligned(mi_heap_t* heap, size_t count, size_t size, size_t alignment) mi_attr_noexcept {
186 return mi_heap_calloc_aligned_at(heap,count,size,alignment,0);
187}
188
189mi_decl_nodiscard mi_decl_restrict void* mi_malloc_aligned_at(size_t size, size_t alignment, size_t offset) mi_attr_noexcept {
190 return mi_heap_malloc_aligned_at(mi_get_default_heap(), size, alignment, offset);

Callers 1

mi_calloc_alignedFunction · 0.85

Calls 1

Tested by

no test coverage detected