fn alignAllocLen(full_len: usize, alloc_len: usize, len_align: u29) usize
[src]
An allocator helper function. Adjusts an allocation length satisfy len_align
. full_len
should be the full capacity of the allocation which may be greater than the len
that was requested. This function should only be used by allocators that are unaffected by len_align
.