pub const fn align_up(addr: usize, align: usize) -> usize
Align address upwards.
Returns the smallest x with alignment align so that x >= addr.
x
align
x >= addr
align must be a power of 2.