]> git.proxmox.com Git - rustc.git/blob - vendor/packed_simd/src/v16.rs
New upstream version 1.75.0+dfsg1
[rustc.git] / vendor / packed_simd / src / v16.rs
1 //! 16-bit wide vector types
2
3 use crate::*;
4
5 impl_i!([i8; 2]: i8x2, m8x2 | i8, u8 | test_v16 | x0, x1 |
6 From: |
7 /// A 16-bit vector with 2 `i8` lanes.
8 );
9 impl_u!([u8; 2]: u8x2, m8x2 | u8, u8 | test_v16 | x0, x1 |
10 From: |
11 /// A 16-bit vector with 2 `u8` lanes.
12 );
13 impl_m!([m8; 2]: m8x2 | i8, u8 | test_v16 | x0, x1 |
14 From: m16x2, m32x2, m64x2, m128x2 |
15 /// A 16-bit vector mask with 2 `m8` lanes.
16 );