#[repr(C, align(32))]pub struct u32x8<S: Simd> {
pub val: [u32; 8],
pub simd: S,
}Fields§
§val: [u32; 8]§simd: SImplementations§
Source§impl<S: Simd> u32x8<S>
impl<S: Simd> u32x8<S>
pub fn not(self) -> u32x8<S>
pub fn add(self, rhs: impl SimdInto<Self, S>) -> u32x8<S>
pub fn sub(self, rhs: impl SimdInto<Self, S>) -> u32x8<S>
pub fn mul(self, rhs: impl SimdInto<Self, S>) -> u32x8<S>
pub fn and(self, rhs: impl SimdInto<Self, S>) -> u32x8<S>
pub fn or(self, rhs: impl SimdInto<Self, S>) -> u32x8<S>
pub fn xor(self, rhs: impl SimdInto<Self, S>) -> u32x8<S>
pub fn shr(self, shift: u32) -> u32x8<S>
pub fn shrv(self, rhs: impl SimdInto<Self, S>) -> u32x8<S>
pub fn shl(self, shift: u32) -> u32x8<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>) -> u32x8<S>
pub fn max(self, rhs: impl SimdInto<Self, S>) -> u32x8<S>
pub fn combine(self, rhs: impl SimdInto<Self, S>) -> u32x16<S>
pub fn reinterpret_u8(self) -> u8x32<S>
pub fn cvt_f32(self) -> f32x8<S>
Trait Implementations§
Source§impl<S: Simd> AddAssign<u32> for u32x8<S>
impl<S: Simd> AddAssign<u32> for u32x8<S>
Source§fn add_assign(&mut self, rhs: u32)
fn add_assign(&mut self, rhs: u32)
Performs the
+= operation. Read moreSource§impl<S: Simd> AddAssign for u32x8<S>
impl<S: Simd> AddAssign for u32x8<S>
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+= operation. Read moreSource§impl<S: Simd> BitAndAssign<u32> for u32x8<S>
impl<S: Simd> BitAndAssign<u32> for u32x8<S>
Source§fn bitand_assign(&mut self, rhs: u32)
fn bitand_assign(&mut self, rhs: u32)
Performs the
&= operation. Read moreSource§impl<S: Simd> BitAndAssign for u32x8<S>
impl<S: Simd> BitAndAssign for u32x8<S>
Source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&= operation. Read moreSource§impl<S: Simd> BitOrAssign<u32> for u32x8<S>
impl<S: Simd> BitOrAssign<u32> for u32x8<S>
Source§fn bitor_assign(&mut self, rhs: u32)
fn bitor_assign(&mut self, rhs: u32)
Performs the
|= operation. Read moreSource§impl<S: Simd> BitOrAssign for u32x8<S>
impl<S: Simd> BitOrAssign for u32x8<S>
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|= operation. Read moreSource§impl<S: Simd> BitXorAssign<u32> for u32x8<S>
impl<S: Simd> BitXorAssign<u32> for u32x8<S>
Source§fn bitxor_assign(&mut self, rhs: u32)
fn bitxor_assign(&mut self, rhs: u32)
Performs the
^= operation. Read moreSource§impl<S: Simd> BitXorAssign for u32x8<S>
impl<S: Simd> BitXorAssign for u32x8<S>
Source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^= operation. Read moreSource§impl<S: Simd> MulAssign<u32> for u32x8<S>
impl<S: Simd> MulAssign<u32> for u32x8<S>
Source§fn mul_assign(&mut self, rhs: u32)
fn mul_assign(&mut self, rhs: u32)
Performs the
*= operation. Read moreSource§impl<S: Simd> MulAssign for u32x8<S>
impl<S: Simd> MulAssign for u32x8<S>
Source§fn mul_assign(&mut self, rhs: Self)
fn mul_assign(&mut self, rhs: Self)
Performs the
*= operation. Read moreSource§impl<S: Simd> ShlAssign<u32> for u32x8<S>
impl<S: Simd> ShlAssign<u32> for u32x8<S>
Source§fn shl_assign(&mut self, rhs: u32)
fn shl_assign(&mut self, rhs: u32)
Performs the
<<= operation. Read moreSource§impl<S: Simd> ShrAssign<u32> for u32x8<S>
impl<S: Simd> ShrAssign<u32> for u32x8<S>
Source§fn shr_assign(&mut self, rhs: u32)
fn shr_assign(&mut self, rhs: u32)
Performs the
>>= operation. Read moreSource§impl<S: Simd> ShrAssign for u32x8<S>
impl<S: Simd> ShrAssign for u32x8<S>
Source§fn shr_assign(&mut self, rhs: Self)
fn shr_assign(&mut self, rhs: Self)
Performs the
>>= operation. Read moreSource§impl<S: Simd> SimdBase<u32, S> for u32x8<S>
impl<S: Simd> SimdBase<u32, S> for u32x8<S>
Source§impl<S: Simd> SimdCvtFloat<u32x8<S>> for f32x8<S>
impl<S: Simd> SimdCvtFloat<u32x8<S>> for f32x8<S>
fn float_from(x: u32x8<S>) -> Self
Source§impl<S: Simd> SimdCvtTruncate<f32x8<S>> for u32x8<S>
impl<S: Simd> SimdCvtTruncate<f32x8<S>> for u32x8<S>
fn truncate_from(x: f32x8<S>) -> Self
Source§impl<S: Simd> SimdInt<u32, S> for u32x8<S>
impl<S: Simd> SimdInt<u32, S> for u32x8<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>) -> u32x8<S>
fn zip_high(self, rhs: impl SimdInto<Self, S>) -> u32x8<S>
fn unzip_low(self, rhs: impl SimdInto<Self, S>) -> u32x8<S>
fn unzip_high(self, rhs: impl SimdInto<Self, S>) -> u32x8<S>
fn min(self, rhs: impl SimdInto<Self, S>) -> u32x8<S>
fn max(self, rhs: impl SimdInto<Self, S>) -> u32x8<S>
fn to_float<T: SimdCvtFloat<Self>>(self) -> T
Source§impl<S: Simd> SubAssign<u32> for u32x8<S>
impl<S: Simd> SubAssign<u32> for u32x8<S>
Source§fn sub_assign(&mut self, rhs: u32)
fn sub_assign(&mut self, rhs: u32)
Performs the
-= operation. Read moreSource§impl<S: Simd> SubAssign for u32x8<S>
impl<S: Simd> SubAssign for u32x8<S>
Source§fn sub_assign(&mut self, rhs: Self)
fn sub_assign(&mut self, rhs: Self)
Performs the
-= operation. Read moreimpl<S: Copy + Simd> Copy for u32x8<S>
Auto Trait Implementations§
impl<S> Freeze for u32x8<S>where
S: Freeze,
impl<S> RefUnwindSafe for u32x8<S>where
S: RefUnwindSafe,
impl<S> Send for u32x8<S>
impl<S> Sync for u32x8<S>
impl<S> Unpin for u32x8<S>where
S: Unpin,
impl<S> UnwindSafe for u32x8<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