[−][src]Function safe_arch::store_unaligned_m128i
pub fn store_unaligned_m128i(r: &mut [u8; 16], a: m128i)
This is supported with target feature
sse2
only.Stores the value to the reference given.
let a = m128i::from([0_u8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]); let mut b = [0_u8; 16]; store_unaligned_m128i(&mut b, a); assert_eq!(b, [0_u8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]);