Type Definition packed_simd::u128x1

source ·
pub type u128x1 = Simd<[u128; 1]>;
Expand description

A 128-bit vector with 1 u128 lane.

Implementations§

source§

impl u128x1

source

pub const fn new(x0: u128) -> Self

Creates a new instance with each vector elements initialized with the provided values.

source

pub const fn lanes() -> usize

Returns the number of vector lanes.

source

pub const fn splat(value: u128) -> Self

Constructs a new instance with each element initialized to value.

source

pub fn extract(self, index: usize) -> u128

Extracts the value at index.

Panics

If index >= Self::lanes().

source

pub unsafe fn extract_unchecked(self, index: usize) -> u128

Extracts the value at index.

Safety

If index >= Self::lanes() the behavior is undefined.

source

pub fn replace(self, index: usize, new_value: u128) -> Self

Returns a new vector where the value at index is replaced by new_value.

Panics

If index >= Self::lanes().

source

pub unsafe fn replace_unchecked(self, index: usize, new_value: u128) -> Self

Returns a new vector where the value at index is replaced by new_value.

Safety

If index >= Self::lanes() the behavior is undefined.

source§

impl u128x1

source

pub fn rotate_left(self, n: u128x1) -> u128x1

Shifts the bits of each lane to the left by the specified amount in the corresponding lane of n, wrapping the truncated bits to the end of the resulting integer.

Note: this is neither the same operation as << nor equivalent to slice::rotate_left.

source

pub fn rotate_right(self, n: u128x1) -> u128x1

Shifts the bits of each lane to the right by the specified amount in the corresponding lane of n, wrapping the truncated bits to the beginning of the resulting integer.

Note: this is neither the same operation as >> nor equivalent to slice::rotate_right.

source§

impl u128x1

source

pub fn min(self, x: Self) -> Self

Minimum of two vectors.

Returns a new vector containing the minimum value of each of the input vector lanes.

source

pub fn max(self, x: Self) -> Self

Maximum of two vectors.

Returns a new vector containing the maximum value of each of the input vector lanes.

source§

impl u128x1

source

pub fn wrapping_sum(self) -> u128

Horizontal wrapping sum of the vector elements.

The intrinsic performs a tree-reduction of the vector elements. That is, for an 8 element vector:

((x0 + x1) + (x2 + x3)) + ((x4 + x5) + (x6 + x7))

If an operation overflows it returns the mathematical result modulo 2^n where n is the number of times it overflows.

source

pub fn wrapping_product(self) -> u128

Horizontal wrapping product of the vector elements.

The intrinsic performs a tree-reduction of the vector elements. That is, for an 8 element vector:

((x0 * x1) * (x2 * x3)) * ((x4 * x5) * (x6 * x7))

If an operation overflows it returns the mathematical result modulo 2^n where n is the number of times it overflows.

source§

impl u128x1

source

pub fn max_element(self) -> u128

Largest vector element value.

source

pub fn min_element(self) -> u128

Smallest vector element value.

source§

impl u128x1

source

pub fn and(self) -> u128

Lane-wise bitwise and of the vector elements.

Note: if the vector has one lane, the first element of the vector is returned.

source

pub fn or(self) -> u128

Lane-wise bitwise or of the vector elements.

Note: if the vector has one lane, the first element of the vector is returned.

source

pub fn xor(self) -> u128

Lane-wise bitwise xor of the vector elements.

Note: if the vector has one lane, the first element of the vector is returned.

source§

impl u128x1

source

pub fn from_slice_aligned(slice: &[u128]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes() or &slice[0] is not aligned to an align_of::<Self>() boundary.

source

pub fn from_slice_unaligned(slice: &[u128]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source

pub unsafe fn from_slice_aligned_unchecked(slice: &[u128]) -> Self

Instantiates a new vector with the values of the slice.

Safety

If slice.len() < Self::lanes() or &slice[0] is not aligned to an align_of::<Self>() boundary, the behavior is undefined.

source

pub unsafe fn from_slice_unaligned_unchecked(slice: &[u128]) -> Self

Instantiates a new vector with the values of the slice.

Safety

If slice.len() < Self::lanes() the behavior is undefined.

source§

impl u128x1

source

pub fn write_to_slice_aligned(self, slice: &mut [u128])

Writes the values of the vector to the slice.

Panics

If slice.len() < Self::lanes() or &slice[0] is not aligned to an align_of::<Self>() boundary.

source

pub fn write_to_slice_unaligned(self, slice: &mut [u128])

Writes the values of the vector to the slice.

Panics

If slice.len() < Self::lanes().

source

pub unsafe fn write_to_slice_aligned_unchecked(self, slice: &mut [u128])

Writes the values of the vector to the slice.

Safety

If slice.len() < Self::lanes() or &slice[0] is not aligned to an align_of::<Self>() boundary, the behavior is undefined.

source

pub unsafe fn write_to_slice_unaligned_unchecked(self, slice: &mut [u128])

Writes the values of the vector to the slice.

Safety

If slice.len() < Self::lanes() the behavior is undefined.

source§

impl u128x1

source

pub fn swap_bytes(self) -> Self

Reverses the byte order of the vector.

source

pub fn to_le(self) -> Self

Converts self to little endian from the target’s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

source

pub fn to_be(self) -> Self

Converts self to big endian from the target’s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

source

pub fn from_le(x: Self) -> Self

Converts a vector from little endian to the target’s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

source

pub fn from_be(x: Self) -> Self

Converts a vector from big endian to the target’s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

source§

impl u128x1

source

pub fn count_ones(self) -> Self

Returns the number of ones in the binary representation of the lanes of self.

source

pub fn count_zeros(self) -> Self

Returns the number of zeros in the binary representation of the lanes of self.

source

pub fn leading_zeros(self) -> Self

Returns the number of leading zeros in the binary representation of the lanes of self.

source

pub fn trailing_zeros(self) -> Self

Returns the number of trailing zeros in the binary representation of the lanes of self.

source§

impl u128x1

source

pub fn shuffle1_dyn<I>(self, indices: I) -> Selfwhere Self: Shuffle1Dyn<Indices = I>,

Shuffle vector elements according to indices.

source§

impl u128x1

source

pub fn eq(self, other: Self) -> m128x1

Lane-wise equality comparison.

source

pub fn ne(self, other: Self) -> m128x1

Lane-wise inequality comparison.

source

pub fn lt(self, other: Self) -> m128x1

Lane-wise less-than comparison.

source

pub fn le(self, other: Self) -> m128x1

Lane-wise less-than-or-equals comparison.

source

pub fn gt(self, other: Self) -> m128x1

Lane-wise greater-than comparison.

source

pub fn ge(self, other: Self) -> m128x1

Lane-wise greater-than-or-equals comparison.

source§

impl u128x1

source

pub fn partial_lex_ord(&self) -> LexicographicallyOrdered<u128x1>

Returns a wrapper that implements PartialOrd.

source§

impl u128x1

source

pub fn lex_ord(&self) -> LexicographicallyOrdered<u128x1>

Returns a wrapper that implements Ord.

source§

impl u128x1

source

pub fn bitmask(self) -> u8

Creates a bitmask with the MSB of each vector lane.

If the vector has less than 8 lanes, the bits that do not correspond to any vector lanes are cleared.

Trait Implementations§

source§

impl Add<Simd<[u128; 1]>> for u128x1

§

type Output = Simd<[u128; 1]>

The resulting type after applying the + operator.
source§

fn add(self, other: Self) -> Self

Performs the + operation. Read more
source§

impl Add<u128> for u128x1

§

type Output = Simd<[u128; 1]>

The resulting type after applying the + operator.
source§

fn add(self, other: u128) -> Self

Performs the + operation. Read more
source§

impl AddAssign<Simd<[u128; 1]>> for u128x1

source§

fn add_assign(&mut self, other: Self)

Performs the += operation. Read more
source§

impl AddAssign<u128> for u128x1

source§

fn add_assign(&mut self, other: u128)

Performs the += operation. Read more
source§

impl Binary for u128x1

source§

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

Formats the value using the given formatter.
source§

impl BitAnd<Simd<[u128; 1]>> for u128x1

§

type Output = Simd<[u128; 1]>

The resulting type after applying the & operator.
source§

fn bitand(self, other: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<u128> for u128x1

§

type Output = Simd<[u128; 1]>

The resulting type after applying the & operator.
source§

fn bitand(self, other: u128) -> Self

Performs the & operation. Read more
source§

impl BitAndAssign<Simd<[u128; 1]>> for u128x1

source§

fn bitand_assign(&mut self, other: Self)

Performs the &= operation. Read more
source§

impl BitAndAssign<u128> for u128x1

source§

fn bitand_assign(&mut self, other: u128)

Performs the &= operation. Read more
source§

impl BitOr<Simd<[u128; 1]>> for u128x1

§

type Output = Simd<[u128; 1]>

The resulting type after applying the | operator.
source§

fn bitor(self, other: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<u128> for u128x1

§

type Output = Simd<[u128; 1]>

The resulting type after applying the | operator.
source§

fn bitor(self, other: u128) -> Self

Performs the | operation. Read more
source§

impl BitOrAssign<Simd<[u128; 1]>> for u128x1

source§

fn bitor_assign(&mut self, other: Self)

Performs the |= operation. Read more
source§

impl BitOrAssign<u128> for u128x1

source§

fn bitor_assign(&mut self, other: u128)

Performs the |= operation. Read more
source§

impl BitXor<Simd<[u128; 1]>> for u128x1

§

type Output = Simd<[u128; 1]>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<u128> for u128x1

§

type Output = Simd<[u128; 1]>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: u128) -> Self

Performs the ^ operation. Read more
source§

impl BitXorAssign<Simd<[u128; 1]>> for u128x1

source§

fn bitxor_assign(&mut self, other: Self)

Performs the ^= operation. Read more
source§

impl BitXorAssign<u128> for u128x1

source§

fn bitxor_assign(&mut self, other: u128)

Performs the ^= operation. Read more
source§

impl Debug for u128x1

source§

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

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

impl Default for u128x1

source§

fn default() -> Self

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

impl Div<Simd<[u128; 1]>> for u128x1

§

type Output = Simd<[u128; 1]>

The resulting type after applying the / operator.
source§

fn div(self, other: Self) -> Self

Performs the / operation. Read more
source§

impl Div<u128> for u128x1

§

type Output = Simd<[u128; 1]>

The resulting type after applying the / operator.
source§

fn div(self, other: u128) -> Self

Performs the / operation. Read more
source§

impl DivAssign<Simd<[u128; 1]>> for u128x1

source§

fn div_assign(&mut self, other: Self)

Performs the /= operation. Read more
source§

impl DivAssign<u128> for u128x1

source§

fn div_assign(&mut self, other: u128)

Performs the /= operation. Read more
source§

impl From<[u128; 1]> for u128x1

source§

fn from(array: [u128; 1]) -> Self

Converts to this type from the input type.
source§

impl FromBits<Simd<[f32; 4]>> for u128x1

source§

fn from_bits(x: f32x4) -> Self

Available on crate feature into_bits only.
Safe lossless bitwise transmute from T to Self.
source§

impl FromBits<Simd<[f64; 2]>> for u128x1

source§

fn from_bits(x: f64x2) -> Self

Available on crate feature into_bits only.
Safe lossless bitwise transmute from T to Self.
source§

impl FromBits<Simd<[i128; 1]>> for u128x1

source§

fn from_bits(x: i128x1) -> Self

Available on crate feature into_bits only.
Safe lossless bitwise transmute from T to Self.
source§

impl FromBits<Simd<[i16; 8]>> for u128x1

source§

fn from_bits(x: i16x8) -> Self

Available on crate feature into_bits only.
Safe lossless bitwise transmute from T to Self.
source§

impl FromBits<Simd<[i32; 4]>> for u128x1

source§

fn from_bits(x: i32x4) -> Self

Available on crate feature into_bits only.
Safe lossless bitwise transmute from T to Self.
source§

impl FromBits<Simd<[i64; 2]>> for u128x1

source§

fn from_bits(x: i64x2) -> Self

Available on crate feature into_bits only.
Safe lossless bitwise transmute from T to Self.
source§

impl FromBits<Simd<[i8; 16]>> for u128x1

source§

fn from_bits(x: i8x16) -> Self

Available on crate feature into_bits only.
Safe lossless bitwise transmute from T to Self.
source§

impl FromBits<Simd<[m128; 1]>> for u128x1

source§

fn from_bits(x: m128x1) -> Self

Available on crate feature into_bits only.
Safe lossless bitwise transmute from T to Self.
source§

impl FromBits<Simd<[m16; 8]>> for u128x1

source§

fn from_bits(x: m16x8) -> Self

Available on crate feature into_bits only.
Safe lossless bitwise transmute from T to Self.
source§

impl FromBits<Simd<[m32; 4]>> for u128x1

source§

fn from_bits(x: m32x4) -> Self

Available on crate feature into_bits only.
Safe lossless bitwise transmute from T to Self.
source§

impl FromBits<Simd<[m64; 2]>> for u128x1

source§

fn from_bits(x: m64x2) -> Self

Available on crate feature into_bits only.
Safe lossless bitwise transmute from T to Self.
source§

impl FromBits<Simd<[m8; 16]>> for u128x1

source§

fn from_bits(x: m8x16) -> Self

Available on crate feature into_bits only.
Safe lossless bitwise transmute from T to Self.
source§

impl FromBits<Simd<[u16; 8]>> for u128x1

source§

fn from_bits(x: u16x8) -> Self

Available on crate feature into_bits only.
Safe lossless bitwise transmute from T to Self.
source§

impl FromBits<Simd<[u32; 4]>> for u128x1

source§

fn from_bits(x: u32x4) -> Self

Available on crate feature into_bits only.
Safe lossless bitwise transmute from T to Self.
source§

impl FromBits<Simd<[u64; 2]>> for u128x1

source§

fn from_bits(x: u64x2) -> Self

Available on crate feature into_bits only.
Safe lossless bitwise transmute from T to Self.
source§

impl FromBits<Simd<[u8; 16]>> for u128x1

source§

fn from_bits(x: u8x16) -> Self

Available on crate feature into_bits only.
Safe lossless bitwise transmute from T to Self.
source§

impl FromBits<__m128> for u128x1

source§

fn from_bits(x: __m128) -> Self

Available on crate feature into_bits only.
Safe lossless bitwise transmute from T to Self.
source§

impl FromBits<__m128d> for u128x1

source§

fn from_bits(x: __m128d) -> Self

Available on crate feature into_bits only.
Safe lossless bitwise transmute from T to Self.
source§

impl FromBits<__m128i> for u128x1

source§

fn from_bits(x: __m128i) -> Self

Available on crate feature into_bits only.
Safe lossless bitwise transmute from T to Self.
source§

impl FromCast<Simd<[i128; 1]>> for u128x1

source§

fn from_cast(x: i128x1) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[m128; 1]>> for u128x1

source§

fn from_cast(x: m128x1) -> Self

Numeric cast from T to Self.
source§

impl Hash for u128x1

source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl LowerHex for u128x1

source§

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

Formats the value using the given formatter.
source§

impl Mul<Simd<[u128; 1]>> for u128x1

§

type Output = Simd<[u128; 1]>

The resulting type after applying the * operator.
source§

fn mul(self, other: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<u128> for u128x1

§

type Output = Simd<[u128; 1]>

The resulting type after applying the * operator.
source§

fn mul(self, other: u128) -> Self

Performs the * operation. Read more
source§

impl MulAssign<Simd<[u128; 1]>> for u128x1

source§

fn mul_assign(&mut self, other: Self)

Performs the *= operation. Read more
source§

impl MulAssign<u128> for u128x1

source§

fn mul_assign(&mut self, other: u128)

Performs the *= operation. Read more
source§

impl Not for u128x1

§

type Output = Simd<[u128; 1]>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Octal for u128x1

source§

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

Formats the value using the given formatter.
source§

impl PartialEq<Simd<[u128; 1]>> for u128x1

source§

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

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

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

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

impl<'a> Product<&'a Simd<[u128; 1]>> for u128x1

source§

fn product<I: Iterator<Item = &'a u128x1>>(iter: I) -> u128x1

Method which takes an iterator and generates Self from the elements by multiplying the items.
source§

impl Product<Simd<[u128; 1]>> for u128x1

source§

fn product<I: Iterator<Item = u128x1>>(iter: I) -> u128x1

Method which takes an iterator and generates Self from the elements by multiplying the items.
source§

impl Rem<Simd<[u128; 1]>> for u128x1

§

type Output = Simd<[u128; 1]>

The resulting type after applying the % operator.
source§

fn rem(self, other: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<u128> for u128x1

§

type Output = Simd<[u128; 1]>

The resulting type after applying the % operator.
source§

fn rem(self, other: u128) -> Self

Performs the % operation. Read more
source§

impl RemAssign<Simd<[u128; 1]>> for u128x1

source§

fn rem_assign(&mut self, other: Self)

Performs the %= operation. Read more
source§

impl RemAssign<u128> for u128x1

source§

fn rem_assign(&mut self, other: u128)

Performs the %= operation. Read more
source§

impl Shl<Simd<[u128; 1]>> for u128x1

§

type Output = Simd<[u128; 1]>

The resulting type after applying the << operator.
source§

fn shl(self, other: Self) -> Self

Performs the << operation. Read more
source§

impl Shl<u32> for u128x1

§

type Output = Simd<[u128; 1]>

The resulting type after applying the << operator.
source§

fn shl(self, other: u32) -> Self

Performs the << operation. Read more
source§

impl ShlAssign<Simd<[u128; 1]>> for u128x1

source§

fn shl_assign(&mut self, other: Self)

Performs the <<= operation. Read more
source§

impl ShlAssign<u32> for u128x1

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
source§

impl Shr<Simd<[u128; 1]>> for u128x1

§

type Output = Simd<[u128; 1]>

The resulting type after applying the >> operator.
source§

fn shr(self, other: Self) -> Self

Performs the >> operation. Read more
source§

impl Shr<u32> for u128x1

§

type Output = Simd<[u128; 1]>

The resulting type after applying the >> operator.
source§

fn shr(self, other: u32) -> Self

Performs the >> operation. Read more
source§

impl ShrAssign<Simd<[u128; 1]>> for u128x1

source§

fn shr_assign(&mut self, other: Self)

Performs the >>= operation. Read more
source§

impl ShrAssign<u32> for u128x1

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
source§

impl Simd for u128x1

§

type Element = u128

Element type of the SIMD vector
source§

const LANES: usize = 1usize

The number of elements in the SIMD vector.
§

type LanesType = [u32; 1]

The type: [u32; Self::N].
source§

impl Sub<Simd<[u128; 1]>> for u128x1

§

type Output = Simd<[u128; 1]>

The resulting type after applying the - operator.
source§

fn sub(self, other: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<u128> for u128x1

§

type Output = Simd<[u128; 1]>

The resulting type after applying the - operator.
source§

fn sub(self, other: u128) -> Self

Performs the - operation. Read more
source§

impl SubAssign<Simd<[u128; 1]>> for u128x1

source§

fn sub_assign(&mut self, other: Self)

Performs the -= operation. Read more
source§

impl SubAssign<u128> for u128x1

source§

fn sub_assign(&mut self, other: u128)

Performs the -= operation. Read more
source§

impl<'a> Sum<&'a Simd<[u128; 1]>> for u128x1

source§

fn sum<I: Iterator<Item = &'a u128x1>>(iter: I) -> u128x1

Method which takes an iterator and generates Self from the elements by “summing up” the items.
source§

impl Sum<Simd<[u128; 1]>> for u128x1

source§

fn sum<I: Iterator<Item = u128x1>>(iter: I) -> u128x1

Method which takes an iterator and generates Self from the elements by “summing up” the items.
source§

impl UpperHex for u128x1

source§

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

Formats the value using the given formatter.
source§

impl Eq for u128x1