pub const fn usize_align_down(addr: usize, align: usize) -> usize
Expand description
Align address downwards.
Returns the greatest x
with alignment align
so that x <= addr
.
Panics if the alignment is not a power of two.
This is a const
version of Align::align_down
.