#[repr(C, align(16))]pub struct u16x8<S: Simd> {
pub val: [u16; 8],
pub simd: S,
}
Fields§
§val: [u16; 8]
§simd: S
Implementations§
Source§impl<S: Simd> u16x8<S>
impl<S: Simd> u16x8<S>
pub fn not(self) -> u16x8<S>
pub fn add(self, rhs: impl SimdInto<Self, S>) -> u16x8<S>
pub fn sub(self, rhs: impl SimdInto<Self, S>) -> u16x8<S>
pub fn mul(self, rhs: impl SimdInto<Self, S>) -> u16x8<S>
pub fn and(self, rhs: impl SimdInto<Self, S>) -> u16x8<S>
pub fn or(self, rhs: impl SimdInto<Self, S>) -> u16x8<S>
pub fn xor(self, rhs: impl SimdInto<Self, S>) -> u16x8<S>
pub fn shr(self, shift: u32) -> u16x8<S>
pub fn simd_eq(self, rhs: impl SimdInto<Self, S>) -> mask16x8<S>
pub fn simd_lt(self, rhs: impl SimdInto<Self, S>) -> mask16x8<S>
pub fn simd_le(self, rhs: impl SimdInto<Self, S>) -> mask16x8<S>
pub fn simd_ge(self, rhs: impl SimdInto<Self, S>) -> mask16x8<S>
pub fn simd_gt(self, rhs: impl SimdInto<Self, S>) -> mask16x8<S>
pub fn min(self, rhs: impl SimdInto<Self, S>) -> u16x8<S>
pub fn max(self, rhs: impl SimdInto<Self, S>) -> u16x8<S>
pub fn combine(self, rhs: impl SimdInto<Self, S>) -> u16x16<S>
pub fn reinterpret_u8(self) -> u8x16<S>
pub fn reinterpret_u32(self) -> u32x4<S>
Trait Implementations§
Source§impl<S: Simd> SimdBase<u16, S> for u16x8<S>
impl<S: Simd> SimdBase<u16, S> for u16x8<S>
Source§impl<S: Simd> SimdInt<u16, S> for u16x8<S>
impl<S: Simd> SimdInt<u16, S> for u16x8<S>
fn simd_eq(self, rhs: impl SimdInto<Self, S>) -> mask16x8<S>
fn simd_lt(self, rhs: impl SimdInto<Self, S>) -> mask16x8<S>
fn simd_le(self, rhs: impl SimdInto<Self, S>) -> mask16x8<S>
fn simd_ge(self, rhs: impl SimdInto<Self, S>) -> mask16x8<S>
fn simd_gt(self, rhs: impl SimdInto<Self, S>) -> mask16x8<S>
fn zip_low(self, rhs: impl SimdInto<Self, S>) -> u16x8<S>
fn zip_high(self, rhs: impl SimdInto<Self, S>) -> u16x8<S>
fn unzip_low(self, rhs: impl SimdInto<Self, S>) -> u16x8<S>
fn unzip_high(self, rhs: impl SimdInto<Self, S>) -> u16x8<S>
fn min(self, rhs: impl SimdInto<Self, S>) -> u16x8<S>
fn max(self, rhs: impl SimdInto<Self, S>) -> u16x8<S>
fn to_float<T: SimdCvtFloat<Self>>(self) -> T
impl<S: Copy + Simd> Copy for u16x8<S>
Auto Trait Implementations§
impl<S> Freeze for u16x8<S>where
S: Freeze,
impl<S> RefUnwindSafe for u16x8<S>where
S: RefUnwindSafe,
impl<S> Send for u16x8<S>
impl<S> Sync for u16x8<S>
impl<S> Unpin for u16x8<S>where
S: Unpin,
impl<S> UnwindSafe for u16x8<S>where
S: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more