1#[allow(non_snake_case)] 2#[inline(always)] 3pub const fn AVX_W(value: bool) -> u8 { 4 if value { 5 0x80 6 } else { 7 0x0 8 } 9}