Function libmimalloc_sys::mi_realloc_aligned_at
source ยท pub unsafe extern "C" fn mi_realloc_aligned_at(
p: *mut c_void,
newsize: usize,
alignment: usize,
offset: usize,
) -> *mut c_void
Expand description
Re-allocate memory to newsize
bytes aligned by alignment
at a
specified offset
.
This is a realloc
equivalent of mi_malloc_aligned_at
.