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