#[repr(C, align(32))]pub struct i8x32<S: Simd> {
pub val: [i8; 32],
pub simd: S,
}
Fields§
§val: [i8; 32]
§simd: S
Implementations§
Source§impl<S: Simd> i8x32<S>
impl<S: Simd> i8x32<S>
pub fn not(self) -> i8x32<S>
pub fn add(self, rhs: impl SimdInto<Self, S>) -> i8x32<S>
pub fn sub(self, rhs: impl SimdInto<Self, S>) -> i8x32<S>
pub fn mul(self, rhs: impl SimdInto<Self, S>) -> i8x32<S>
pub fn and(self, rhs: impl SimdInto<Self, S>) -> i8x32<S>
pub fn or(self, rhs: impl SimdInto<Self, S>) -> i8x32<S>
pub fn xor(self, rhs: impl SimdInto<Self, S>) -> i8x32<S>
pub fn shr(self, shift: u32) -> i8x32<S>
pub fn simd_eq(self, rhs: impl SimdInto<Self, S>) -> mask8x32<S>
pub fn simd_lt(self, rhs: impl SimdInto<Self, S>) -> mask8x32<S>
pub fn simd_le(self, rhs: impl SimdInto<Self, S>) -> mask8x32<S>
pub fn simd_ge(self, rhs: impl SimdInto<Self, S>) -> mask8x32<S>
pub fn simd_gt(self, rhs: impl SimdInto<Self, S>) -> mask8x32<S>
pub fn min(self, rhs: impl SimdInto<Self, S>) -> i8x32<S>
pub fn max(self, rhs: impl SimdInto<Self, S>) -> i8x32<S>
pub fn combine(self, rhs: impl SimdInto<Self, S>) -> i8x64<S>
pub fn reinterpret_u8(self) -> u8x32<S>
pub fn reinterpret_u32(self) -> u32x8<S>
Trait Implementations§
Source§impl<S: Simd> SimdBase<i8, S> for i8x32<S>
impl<S: Simd> SimdBase<i8, S> for i8x32<S>
Source§impl<S: Simd> SimdInt<i8, S> for i8x32<S>
impl<S: Simd> SimdInt<i8, S> for i8x32<S>
fn simd_eq(self, rhs: impl SimdInto<Self, S>) -> mask8x32<S>
fn simd_lt(self, rhs: impl SimdInto<Self, S>) -> mask8x32<S>
fn simd_le(self, rhs: impl SimdInto<Self, S>) -> mask8x32<S>
fn simd_ge(self, rhs: impl SimdInto<Self, S>) -> mask8x32<S>
fn simd_gt(self, rhs: impl SimdInto<Self, S>) -> mask8x32<S>
fn zip_low(self, rhs: impl SimdInto<Self, S>) -> i8x32<S>
fn zip_high(self, rhs: impl SimdInto<Self, S>) -> i8x32<S>
fn unzip_low(self, rhs: impl SimdInto<Self, S>) -> i8x32<S>
fn unzip_high(self, rhs: impl SimdInto<Self, S>) -> i8x32<S>
fn min(self, rhs: impl SimdInto<Self, S>) -> i8x32<S>
fn max(self, rhs: impl SimdInto<Self, S>) -> i8x32<S>
fn to_float<T: SimdCvtFloat<Self>>(self) -> T
impl<S: Copy + Simd> Copy for i8x32<S>
Auto Trait Implementations§
impl<S> Freeze for i8x32<S>where
S: Freeze,
impl<S> RefUnwindSafe for i8x32<S>where
S: RefUnwindSafe,
impl<S> Send for i8x32<S>
impl<S> Sync for i8x32<S>
impl<S> Unpin for i8x32<S>where
S: Unpin,
impl<S> UnwindSafe for i8x32<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