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