Struct ppv_lite86::x86_64::sse2::u128x1_sse2

source ·
#[repr(transparent)]
pub struct u128x1_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> u128x1_sse2<S3, S4, NI>

source

fn new(x: __m128i) -> Self

Trait Implementations§

source§

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

§

type Output = u128x1_sse2<S3, S4, NI>

source§

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

source§

impl<S3, S4, NI> AsBytes for u128x1_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 u128x1_sse2<NoS3, S4, NI>

source§

fn bswap(self) -> Self

source§

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

source§

fn bswap(self) -> Self

source§

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

§

type Output = u128x1_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 u128x1_sse2<S3, S4, NI>
where u128x1_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 u128x1_sse2<S3, S4, NI>

§

type Output = u128x1_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 u128x1_sse2<S3, S4, NI>
where u128x1_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 u128x1_sse2<S3, S4, NI>

§

type Output = u128x1_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 u128x1_sse2<S3, S4, NI>
where u128x1_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 u128x1_sse2<S3, S4, NI>

source§

fn clone(&self) -> u128x1_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> Default for u128x1_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<u128x1_sse2<S3, S4, NI>> for u64x2_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<u128x1_sse2<S3, S4, NI>> for vec128_storage

source§

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

Converts to this type from the input type.
source§

impl<S3, S4, NI> FromBytes for u128x1_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 u128x1_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> MultiLane<[u128; 1]> for u128x1_sse2<S3, S4, NI>

source§

fn to_lanes(self) -> [u128; 1]

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

fn from_lanes(xs: [u128; 1]) -> Self

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

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

§

type Output = u128x1_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: Copy, S4: Copy, NI: Copy> RotateEachWord32 for u128x1_sse2<S3, S4, NI>

source§

impl<S3: Copy, S4: Copy, NI: Copy> RotateEachWord64 for u128x1_sse2<S3, S4, NI>

source§

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

source§

unsafe fn unpack(x: vec128_storage) -> Self

Safety Read more
source§

impl<S3, S4, NI> StoreBytes for u128x1_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<S4, NI> Swap64 for u128x1_sse2<NoS3, S4, NI>

source§

fn swap1(self) -> Self

source§

fn swap2(self) -> Self

source§

fn swap4(self) -> Self

source§

fn swap8(self) -> Self

source§

fn swap16(self) -> Self

source§

fn swap32(self) -> Self

source§

fn swap64(self) -> Self

source§

impl<S4, NI> Swap64 for u128x1_sse2<YesS3, S4, NI>

source§

fn swap1(self) -> Self

source§

fn swap2(self) -> Self

source§

fn swap4(self) -> Self

source§

fn swap8(self) -> Self

source§

fn swap16(self) -> Self

source§

fn swap32(self) -> Self

source§

fn swap64(self) -> Self

source§

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

source§

impl<S3: Copy, S4: Copy, NI: Copy> BitOps128 for u128x1_sse2<S3, S4, NI>
where u128x1_sse2<S3, S4, NI>: RotateEachWord128,

source§

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

source§

impl<S3: Copy, S4: Copy, NI: Copy> BitOps64 for u128x1_sse2<S3, S4, NI>

source§

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

source§

impl<S3: Copy, S4: Copy, NI: Copy> RotateEachWord128 for u128x1_sse2<S3, S4, NI>

source§

impl<NI: Copy> u128x1<Avx2Machine<NI>> for u128x1_sse2<YesS3, YesS4, NI>

source§

impl<S3: Copy, S4: Copy, NI: Copy> u128x1<SseMachine<S3, S4, NI>> for u128x1_sse2<S3, S4, NI>
where u128x1_sse2<S3, S4, NI>: Swap64 + RotateEachWord64 + RotateEachWord32 + BSwap + Into<<SseMachine<S3, S4, NI> as Machine>::u32x4> + Into<<SseMachine<S3, S4, NI> as Machine>::u64x2>, SseMachine<S3, S4, NI>: Machine,

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

§

impl<S3, S4, NI> UnwindSafe for u128x1_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