fn roundDownToPowerOf2(x: u64) u64
fn roundDownToPowerOf2(x: u64) u64 { return @as(u64, 1) << highestOne(x | 1); }