Type Definition packed_simd::u8x2

source ·
pub type u8x2 = Simd<[u8; 2]>;
Expand description

A 16-bit vector with 2 u8 lanes.

Implementations§

source§

impl u8x2

source

pub const fn new(x0: u8, x1: u8) -> 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: u8) -> Self

Constructs a new instance with each element initialized to value.

source

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

Extracts the value at index.

Panics

If index >= Self::lanes().

source

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

Extracts the value at index.

Safety

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

source

pub fn replace(self, index: usize, new_value: u8) -> 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: u8) -> 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 u8x2

source

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

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: u8x2) -> u8x2

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 u8x2

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 u8x2

source

pub fn wrapping_sum(self) -> u8

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) -> u8

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 u8x2

source

pub fn max_element(self) -> u8

Largest vector element value.

source

pub fn min_element(self) -> u8

Smallest vector element value.

source§

impl u8x2

source

pub fn and(self) -> u8

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) -> u8

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) -> u8

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 u8x2

source

pub fn from_slice_aligned(slice: &[u8]) -> 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: &[u8]) -> 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: &[u8]) -> 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: &[u8]) -> Self

Instantiates a new vector with the values of the slice.

Safety

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

source§

impl u8x2

source

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

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 [u8])

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 [u8])

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 [u8])

Writes the values of the vector to the slice.

Safety

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

source§

impl u8x2

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 u8x2

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 u8x2

source

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

Shuffle vector elements according to indices.

source§

impl u8x2

source

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

Lane-wise equality comparison.

source

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

Lane-wise inequality comparison.

source

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

Lane-wise less-than comparison.

source

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

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

source

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

Lane-wise greater-than comparison.

source

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

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

source§

impl u8x2

source

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

Returns a wrapper that implements PartialOrd.

source§

impl u8x2

source

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

Returns a wrapper that implements Ord.

source§

impl u8x2

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<[u8; 2]>> for u8x2

§

type Output = Simd<[u8; 2]>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<u8> for u8x2

§

type Output = Simd<[u8; 2]>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl AddAssign<Simd<[u8; 2]>> for u8x2

source§

fn add_assign(&mut self, other: Self)

Performs the += operation. Read more
source§

impl AddAssign<u8> for u8x2

source§

fn add_assign(&mut self, other: u8)

Performs the += operation. Read more
source§

impl Binary for u8x2

source§

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

Formats the value using the given formatter.
source§

impl BitAnd<Simd<[u8; 2]>> for u8x2

§

type Output = Simd<[u8; 2]>

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitAnd<u8> for u8x2

§

type Output = Simd<[u8; 2]>

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitAndAssign<Simd<[u8; 2]>> for u8x2

source§

fn bitand_assign(&mut self, other: Self)

Performs the &= operation. Read more
source§

impl BitAndAssign<u8> for u8x2

source§

fn bitand_assign(&mut self, other: u8)

Performs the &= operation. Read more
source§

impl BitOr<Simd<[u8; 2]>> for u8x2

§

type Output = Simd<[u8; 2]>

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitOr<u8> for u8x2

§

type Output = Simd<[u8; 2]>

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitOrAssign<Simd<[u8; 2]>> for u8x2

source§

fn bitor_assign(&mut self, other: Self)

Performs the |= operation. Read more
source§

impl BitOrAssign<u8> for u8x2

source§

fn bitor_assign(&mut self, other: u8)

Performs the |= operation. Read more
source§

impl BitXor<Simd<[u8; 2]>> for u8x2

§

type Output = Simd<[u8; 2]>

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl BitXor<u8> for u8x2

§

type Output = Simd<[u8; 2]>

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl BitXorAssign<Simd<[u8; 2]>> for u8x2

source§

fn bitxor_assign(&mut self, other: Self)

Performs the ^= operation. Read more
source§

impl BitXorAssign<u8> for u8x2

source§

fn bitxor_assign(&mut self, other: u8)

Performs the ^= operation. Read more
source§

impl Debug for u8x2

source§

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

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

impl Default for u8x2

source§

fn default() -> Self

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

impl Div<Simd<[u8; 2]>> for u8x2

§

type Output = Simd<[u8; 2]>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<u8> for u8x2

§

type Output = Simd<[u8; 2]>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl DivAssign<Simd<[u8; 2]>> for u8x2

source§

fn div_assign(&mut self, other: Self)

Performs the /= operation. Read more
source§

impl DivAssign<u8> for u8x2

source§

fn div_assign(&mut self, other: u8)

Performs the /= operation. Read more
source§

impl From<[u8; 2]> for u8x2

source§

fn from(array: [u8; 2]) -> Self

Converts to this type from the input type.
source§

impl FromBits<Simd<[i8; 2]>> for u8x2

source§

fn from_bits(x: i8x2) -> Self

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

impl FromBits<Simd<[m8; 2]>> for u8x2

source§

fn from_bits(x: m8x2) -> Self

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

impl FromCast<Simd<[f32; 2]>> for u8x2

source§

fn from_cast(x: f32x2) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[f64; 2]>> for u8x2

source§

fn from_cast(x: f64x2) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[i128; 2]>> for u8x2

source§

fn from_cast(x: i128x2) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[i16; 2]>> for u8x2

source§

fn from_cast(x: i16x2) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[i32; 2]>> for u8x2

source§

fn from_cast(x: i32x2) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[i64; 2]>> for u8x2

source§

fn from_cast(x: i64x2) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[i8; 2]>> for u8x2

source§

fn from_cast(x: i8x2) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[isize; 2]>> for u8x2

source§

fn from_cast(x: isizex2) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[m128; 2]>> for u8x2

source§

fn from_cast(x: m128x2) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[m16; 2]>> for u8x2

source§

fn from_cast(x: m16x2) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[m32; 2]>> for u8x2

source§

fn from_cast(x: m32x2) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[m64; 2]>> for u8x2

source§

fn from_cast(x: m64x2) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[m8; 2]>> for u8x2

source§

fn from_cast(x: m8x2) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[msize; 2]>> for u8x2

source§

fn from_cast(x: msizex2) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[u128; 2]>> for u8x2

source§

fn from_cast(x: u128x2) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[u16; 2]>> for u8x2

source§

fn from_cast(x: u16x2) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[u32; 2]>> for u8x2

source§

fn from_cast(x: u32x2) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[u64; 2]>> for u8x2

source§

fn from_cast(x: u64x2) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[usize; 2]>> for u8x2

source§

fn from_cast(x: usizex2) -> Self

Numeric cast from T to Self.
source§

impl Hash for u8x2

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 u8x2

source§

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

Formats the value using the given formatter.
source§

impl Mul<Simd<[u8; 2]>> for u8x2

§

type Output = Simd<[u8; 2]>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<u8> for u8x2

§

type Output = Simd<[u8; 2]>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl MulAssign<Simd<[u8; 2]>> for u8x2

source§

fn mul_assign(&mut self, other: Self)

Performs the *= operation. Read more
source§

impl MulAssign<u8> for u8x2

source§

fn mul_assign(&mut self, other: u8)

Performs the *= operation. Read more
source§

impl Not for u8x2

§

type Output = Simd<[u8; 2]>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Octal for u8x2

source§

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

Formats the value using the given formatter.
source§

impl PartialEq<Simd<[u8; 2]>> for u8x2

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<[u8; 2]>> for u8x2

source§

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

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

impl Product<Simd<[u8; 2]>> for u8x2

source§

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

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

impl Rem<Simd<[u8; 2]>> for u8x2

§

type Output = Simd<[u8; 2]>

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl Rem<u8> for u8x2

§

type Output = Simd<[u8; 2]>

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl RemAssign<Simd<[u8; 2]>> for u8x2

source§

fn rem_assign(&mut self, other: Self)

Performs the %= operation. Read more
source§

impl RemAssign<u8> for u8x2

source§

fn rem_assign(&mut self, other: u8)

Performs the %= operation. Read more
source§

impl Shl<Simd<[u8; 2]>> for u8x2

§

type Output = Simd<[u8; 2]>

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

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

Performs the << operation. Read more
source§

impl Shl<u32> for u8x2

§

type Output = Simd<[u8; 2]>

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

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

Performs the << operation. Read more
source§

impl ShlAssign<Simd<[u8; 2]>> for u8x2

source§

fn shl_assign(&mut self, other: Self)

Performs the <<= operation. Read more
source§

impl ShlAssign<u32> for u8x2

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
source§

impl Shr<Simd<[u8; 2]>> for u8x2

§

type Output = Simd<[u8; 2]>

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

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

Performs the >> operation. Read more
source§

impl Shr<u32> for u8x2

§

type Output = Simd<[u8; 2]>

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

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

Performs the >> operation. Read more
source§

impl ShrAssign<Simd<[u8; 2]>> for u8x2

source§

fn shr_assign(&mut self, other: Self)

Performs the >>= operation. Read more
source§

impl ShrAssign<u32> for u8x2

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
source§

impl Simd for u8x2

§

type Element = u8

Element type of the SIMD vector
source§

const LANES: usize = 2usize

The number of elements in the SIMD vector.
§

type LanesType = [u32; 2]

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

impl Sub<Simd<[u8; 2]>> for u8x2

§

type Output = Simd<[u8; 2]>

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl Sub<u8> for u8x2

§

type Output = Simd<[u8; 2]>

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl SubAssign<Simd<[u8; 2]>> for u8x2

source§

fn sub_assign(&mut self, other: Self)

Performs the -= operation. Read more
source§

impl SubAssign<u8> for u8x2

source§

fn sub_assign(&mut self, other: u8)

Performs the -= operation. Read more
source§

impl<'a> Sum<&'a Simd<[u8; 2]>> for u8x2

source§

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

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

impl Sum<Simd<[u8; 2]>> for u8x2

source§

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

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

impl UpperHex for u8x2

source§

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

Formats the value using the given formatter.
source§

impl Eq for u8x2