pub fn add_saturating_i16_m128i(a: m128i, b: m128i) -> m128i
Available with target feature sse2 only.
Expand description

Lanewise saturating a + b with lanes as i16.

let a = m128i::from([i16::MAX, i16::MIN, 3, 4, -1, -2, -3, -4]);
let b = m128i::from([i16::MAX, i16::MIN, 7, 8, -15, -26, -37, 48]);
let c: [i16; 8] = add_saturating_i16_m128i(a, b).into();
assert_eq!(c, [i16::MAX, i16::MIN, 10, 12, -16, -28, -40, 44]);