summaryrefslogtreecommitdiffstats
path: root/vendor/packed_simd_2/src/api/into_bits/v32.rs
blob: 5dba38a17976c10ac6777729367debdaddb88680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//! `FromBits` and `IntoBits` implementations for portable 32-bit wide vectors
#[rustfmt::skip]

#[allow(unused)]  // wasm_bindgen_test
use crate::*;

impl_from_bits!(i8x4[test_v32]: u8x4, m8x4, i16x2, u16x2, m16x2);
impl_from_bits!(u8x4[test_v32]: i8x4, m8x4, i16x2, u16x2, m16x2);
impl_from_bits!(m8x4[test_v32]: m16x2);

impl_from_bits!(i16x2[test_v32]: i8x4, u8x4, m8x4, u16x2, m16x2);
impl_from_bits!(u16x2[test_v32]: i8x4, u8x4, m8x4, i16x2, m16x2);
// note: m16x2 cannot be constructed from all m8x4 bit patterns