pub fn byte_shr_imm_u128_m128i<const IMM: i32>(a: m128i) -> m128i
Available with target feature sse2 only.
Expand description

Shifts all bits in the entire register right by a number of bytes.

let a = m128i::from(0x0000000B_0000000A_0000000F_11111111_u128);
//
let c: u128 = byte_shr_imm_u128_m128i::<1>(a).into();
assert_eq!(c, 0x00000000_0B000000_0A000000_0F111111);