Function libmimalloc_sys::mi_calloc_aligned_at
source ยท pub unsafe extern "C" fn mi_calloc_aligned_at(
count: usize,
size: usize,
alignment: usize,
offset: usize,
) -> *mut c_void
Expand description
Allocate size * count
bytes aligned by alignment
at a specified
offset
, zero-initialized.
This is a calloc
equivalent of mi_malloc_aligned_at
.