pub fn intByteSize(target: *const std.Target, bits: u16) u16
pub fn intByteSize(target: *const std.Target, bits: u16) u16 { const previous_aligned = std.mem.alignBackward(u16, bits, 8); return std.mem.alignForward(u16, @divExact(previous_aligned, 8) + @intFromBool(previous_aligned != bits), intAlignment(target, bits)); }