Struct ppv_lite86::x86_64::sse2::u32x4_sse2

source ·
#[repr(transparent)]
pub struct u32x4_sse2<S3, S4, NI> { x: __m128i, s3: PhantomData<S3>, s4: PhantomData<S4>, ni: PhantomData<NI>, }

Fields§

§x: __m128i§s3: PhantomData<S3>§s4: PhantomData<S4>§ni: PhantomData<NI>

Implementations§

source§

impl<S3, S4, NI> u32x4_sse2<S3, S4, NI>

source

fn new(x: __m128i) -> Self

Trait Implementations§

source§

impl<S3, S4, NI> Add for u32x4_sse2<S3, S4, NI>

§

type Output = u32x4_sse2<S3, S4, NI>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl<S3, S4, NI> AddAssign for u32x4_sse2<S3, S4, NI>
where u32x4_sse2<S3, S4, NI>: Copy,

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl<S3: Copy, S4: Copy, NI: Copy> AndNot for u32x4_sse2<S3, S4, NI>

§

type Output = u32x4_sse2<S3, S4, NI>

source§

fn andnot(self, rhs: Self) -> Self

source§

impl<S3, S4, NI> AsBytes for u32x4_sse2<S3, S4, NI>

source§

fn as_bytes(&self) -> &[u8]

Gets the bytes of this value. Read more
source§

fn as_bytes_mut(&mut self) -> &mut [u8]
where Self: FromBytes,

Gets the bytes of this value mutably. Read more
source§

fn write_to(&self, bytes: &mut [u8]) -> Option<()>

Writes a copy of self to bytes. Read more
source§

fn write_to_prefix(&self, bytes: &mut [u8]) -> Option<()>

Writes a copy of self to the prefix of bytes. Read more
source§

fn write_to_suffix(&self, bytes: &mut [u8]) -> Option<()>

Writes a copy of self to the suffix of bytes. Read more
source§

impl<S4, NI> BSwap for u32x4_sse2<NoS3, S4, NI>

source§

fn bswap(self) -> Self

source§

impl<S4, NI> BSwap for u32x4_sse2<YesS3, S4, NI>

source§

fn bswap(self) -> Self

source§

impl<S3, S4, NI> BitAnd for u32x4_sse2<S3, S4, NI>

§

type Output = u32x4_sse2<S3, S4, NI>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self::Output

Performs the & operation. Read more
source§

impl<S3, S4, NI> BitAndAssign for u32x4_sse2<S3, S4, NI>
where u32x4_sse2<S3, S4, NI>: Copy,

source§

fn bitand_assign(&mut self, rhs: Self)

Performs the &= operation. Read more
source§

impl<S3, S4, NI> BitOr for u32x4_sse2<S3, S4, NI>

§

type Output = u32x4_sse2<S3, S4, NI>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self::Output

Performs the | operation. Read more
source§

impl<S3, S4, NI> BitOrAssign for u32x4_sse2<S3, S4, NI>
where u32x4_sse2<S3, S4, NI>: Copy,

source§

fn bitor_assign(&mut self, rhs: Self)

Performs the |= operation. Read more
source§

impl<S3, S4, NI> BitXor for u32x4_sse2<S3, S4, NI>

§

type Output = u32x4_sse2<S3, S4, NI>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self::Output

Performs the ^ operation. Read more
source§

impl<S3, S4, NI> BitXorAssign for u32x4_sse2<S3, S4, NI>
where u32x4_sse2<S3, S4, NI>: Copy,

source§

fn bitxor_assign(&mut self, rhs: Self)

Performs the ^= operation. Read more
source§

impl<S3: Clone, S4: Clone, NI: Clone> Clone for u32x4_sse2<S3, S4, NI>

source§

fn clone(&self) -> u32x4_sse2<S3, S4, NI>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<S3, S4, NI> Debug for u32x4_sse2<S3, S4, NI>
where Self: Copy + MultiLane<[u32; 4]>,

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<S3, S4, NI> Default for u32x4_sse2<S3, S4, NI>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<S3, S4, NI> From<u128x1_sse2<S3, S4, NI>> for u32x4_sse2<S3, S4, NI>

source§

fn from(x: u128x1_sse2<S3, S4, NI>) -> Self

Converts to this type from the input type.
source§

impl<S3, S4, NI> From<u32x4_sse2<S3, S4, NI>> for vec128_storage

source§

fn from(x: u32x4_sse2<S3, S4, NI>) -> Self

Converts to this type from the input type.
source§

impl<S3, S4, NI> FromBytes for u32x4_sse2<S3, S4, NI>

source§

fn ref_from(bytes: &[u8]) -> Option<&Self>
where Self: Sized,

Interprets the given bytes as a &Self without copying. Read more
source§

fn ref_from_prefix(bytes: &[u8]) -> Option<&Self>
where Self: Sized,

Interprets the prefix of the given bytes as a &Self without copying. Read more
source§

fn ref_from_suffix(bytes: &[u8]) -> Option<&Self>
where Self: Sized,

Interprets the suffix of the given bytes as a &Self without copying. Read more
source§

fn mut_from(bytes: &mut [u8]) -> Option<&mut Self>
where Self: Sized + AsBytes,

Interprets the given bytes as a &mut Self without copying. Read more
source§

fn mut_from_prefix(bytes: &mut [u8]) -> Option<&mut Self>
where Self: Sized + AsBytes,

Interprets the prefix of the given bytes as a &mut Self without copying. Read more
source§

fn mut_from_suffix(bytes: &mut [u8]) -> Option<&mut Self>
where Self: Sized + AsBytes,

Interprets the suffix of the given bytes as a &mut Self without copying. Read more
source§

fn slice_from(bytes: &[u8]) -> Option<&[Self]>
where Self: Sized,

Interprets the given bytes as a &[Self] without copying. Read more
source§

fn slice_from_prefix(bytes: &[u8], count: usize) -> Option<(&[Self], &[u8])>
where Self: Sized,

Interprets the prefix of the given bytes as a &[Self] with length equal to count without copying. Read more
source§

fn slice_from_suffix(bytes: &[u8], count: usize) -> Option<(&[u8], &[Self])>
where Self: Sized,

Interprets the suffix of the given bytes as a &[Self] with length equal to count without copying. Read more
source§

fn mut_slice_from(bytes: &mut [u8]) -> Option<&mut [Self]>
where Self: Sized + AsBytes,

Interprets the given bytes as a &mut [Self] without copying. Read more
source§

fn mut_slice_from_prefix( bytes: &mut [u8], count: usize, ) -> Option<(&mut [Self], &mut [u8])>
where Self: Sized + AsBytes,

Interprets the prefix of the given bytes as a &mut [Self] with length equal to count without copying. Read more
source§

fn mut_slice_from_suffix( bytes: &mut [u8], count: usize, ) -> Option<(&mut [u8], &mut [Self])>
where Self: Sized + AsBytes,

Interprets the suffix of the given bytes as a &mut [Self] with length equal to count without copying. Read more
source§

fn read_from(bytes: &[u8]) -> Option<Self>
where Self: Sized,

Reads a copy of Self from bytes. Read more
source§

fn read_from_prefix(bytes: &[u8]) -> Option<Self>
where Self: Sized,

Reads a copy of Self from the prefix of bytes. Read more
source§

fn read_from_suffix(bytes: &[u8]) -> Option<Self>
where Self: Sized,

Reads a copy of Self from the suffix of bytes. Read more
source§

impl<S3, S4, NI> FromZeroes for u32x4_sse2<S3, S4, NI>

source§

fn zero(&mut self)

Overwrites self with zeroes. Read more
source§

fn new_zeroed() -> Self
where Self: Sized,

Creates an instance of Self from zeroed bytes. Read more
source§

impl<S3, S4, NI> LaneWords4 for u32x4_sse2<S3, S4, NI>

source§

impl<S3, NI> MultiLane<[u32; 4]> for u32x4_sse2<S3, NoS4, NI>

source§

fn to_lanes(self) -> [u32; 4]

Split a multi-lane vector into single-lane vectors.
source§

fn from_lanes(xs: [u32; 4]) -> Self

Build a multi-lane vector from individual lanes.
source§

impl<S3, NI> MultiLane<[u32; 4]> for u32x4_sse2<S3, YesS4, NI>

source§

fn to_lanes(self) -> [u32; 4]

Split a multi-lane vector into single-lane vectors.
source§

fn from_lanes(xs: [u32; 4]) -> Self

Build a multi-lane vector from individual lanes.
source§

impl<S3, S4, NI> Not for u32x4_sse2<S3, S4, NI>

§

type Output = u32x4_sse2<S3, S4, NI>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self::Output

Performs the unary ! operation. Read more
source§

impl<S3, S4, NI> PartialEq for u32x4_sse2<S3, S4, NI>

source§

fn eq(&self, rhs: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<S4: Copy, NI: Copy> RotateEachWord32 for u32x4_sse2<NoS3, S4, NI>

source§

impl<S4: Copy, NI: Copy> RotateEachWord32 for u32x4_sse2<YesS3, S4, NI>

source§

impl<S3, S4, NI> Store<vec128_storage> for u32x4_sse2<S3, S4, NI>

source§

unsafe fn unpack(x: vec128_storage) -> Self

Safety Read more
source§

impl<S3, S4, NI> StoreBytes for u32x4_sse2<S3, S4, NI>
where Self: BSwap,

source§

unsafe fn unsafe_read_le(input: &[u8]) -> Self

Safety Read more
source§

unsafe fn unsafe_read_be(input: &[u8]) -> Self

Safety Read more
source§

fn write_le(self, out: &mut [u8])

source§

fn write_be(self, out: &mut [u8])

source§

impl<S3, S4, NI> UnsafeFrom<[u32; 4]> for u32x4_sse2<S3, S4, NI>

source§

unsafe fn unsafe_from(xs: [u32; 4]) -> Self

source§

impl<NI> Vec2<u32x4_sse2<YesS3, YesS4, NI>> for u32x4x2_avx2<NI>

source§

fn extract(self, i: u32) -> u32x4_sse2<YesS3, YesS4, NI>

source§

fn insert(self, w: u32x4_sse2<YesS3, YesS4, NI>, i: u32) -> Self

source§

impl<S3, NI> Vec4<u32> for u32x4_sse2<S3, NoS4, NI>
where Self: MultiLane<[u32; 4]>,

source§

fn extract(self, i: u32) -> u32

source§

fn insert(self, v: u32, i: u32) -> Self

source§

impl<S3, NI> Vec4<u32> for u32x4_sse2<S3, YesS4, NI>
where Self: MultiLane<[u32; 4]>,

source§

fn extract(self, i: u32) -> u32

source§

fn insert(self, v: u32, i: u32) -> Self

source§

impl<NI: Copy> Vec4<u32x4_sse2<YesS3, YesS4, NI>> for x2<u32x4x2_avx2<NI>, G0>

source§

fn extract(self, i: u32) -> u32x4_sse2<YesS3, YesS4, NI>

source§

fn insert(self, w: u32x4_sse2<YesS3, YesS4, NI>, i: u32) -> Self

source§

impl<NI: Copy> Vec4Ext<u32x4_sse2<YesS3, YesS4, NI>> for x2<u32x4x2_avx2<NI>, G0>

source§

fn transpose4(a: Self, b: Self, c: Self, d: Self) -> (Self, Self, Self, Self)

source§

impl<S3, S4, NI> Words4 for u32x4_sse2<S3, S4, NI>

source§

fn shuffle2301(self) -> Self

source§

fn shuffle1230(self) -> Self

source§

fn shuffle3012(self) -> Self

source§

impl<S3: Copy, S4: Copy, NI: Copy> ArithOps for u32x4_sse2<S3, S4, NI>
where u32x4_sse2<S3, S4, NI>: BSwap,

source§

impl<S3: Copy, S4: Copy, NI: Copy> BitOps0 for u32x4_sse2<S3, S4, NI>

source§

impl<S3: Copy, S4: Copy, NI: Copy> BitOps32 for u32x4_sse2<S3, S4, NI>
where u32x4_sse2<S3, S4, NI>: RotateEachWord32,

source§

impl<S3: Copy, S4: Copy, NI: Copy> Copy for u32x4_sse2<S3, S4, NI>

source§

impl<NI: Copy> u32x4<Avx2Machine<NI>> for u32x4_sse2<YesS3, YesS4, NI>

source§

impl<S3: Copy, S4: Copy, NI: Copy> u32x4<SseMachine<S3, S4, NI>> for u32x4_sse2<S3, S4, NI>
where u32x4_sse2<S3, S4, NI>: RotateEachWord32 + BSwap + MultiLane<[u32; 4]> + Vec4<u32>, SseMachine<S3, S4, NI>: Machine,

Auto Trait Implementations§

§

impl<S3, S4, NI> Freeze for u32x4_sse2<S3, S4, NI>

§

impl<S3, S4, NI> RefUnwindSafe for u32x4_sse2<S3, S4, NI>

§

impl<S3, S4, NI> Send for u32x4_sse2<S3, S4, NI>
where S3: Send, S4: Send, NI: Send,

§

impl<S3, S4, NI> Sync for u32x4_sse2<S3, S4, NI>
where S3: Sync, S4: Sync, NI: Sync,

§

impl<S3, S4, NI> Unpin for u32x4_sse2<S3, S4, NI>
where S3: Unpin, S4: Unpin, NI: Unpin,

§

impl<S3, S4, NI> UnwindSafe for u32x4_sse2<S3, S4, NI>
where S3: UnwindSafe, S4: UnwindSafe, NI: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V