Function rawRemap [src]
This function is not intended to be called except from within the
implementation of an Allocator.
Prototype
pub inline fn rawRemap(a: Allocator, memory: []u8, alignment: Alignment, new_len: usize, ret_addr: usize) ?[*]u8
Parameters
a: Allocator
memory: []u8
alignment: Alignment
new_len: usize
ret_addr: usize
Source
pub inline fn rawRemap(a: Allocator, memory: []u8, alignment: Alignment, new_len: usize, ret_addr: usize) ?[*]u8 {
return a.vtable.remap(a.ptr, memory, alignment, new_len, ret_addr);
}