Function intByteSize [src]
Prototype
pub fn intByteSize(target: *const std.Target, bits: u16) u19 Parameters
target: *const std.Targetbits: u16 Source
pub fn intByteSize(target: *const std.Target, bits: u16) u19 {
return std.mem.alignForward(u19, @intCast((@as(u17, bits) + 7) / 8), intAlignment(target, bits));
}