[][src]Type Definition packed_simd::i32x4

type i32x4 = Simd<[i32; 4]>;

A 128-bit vector with 4 i32 lanes.

Methods

impl i32x4[src]

pub const fn new(x0: i32, x1: i32, x2: i32, x3: i32) -> Self[src]

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

pub const fn lanes() -> usize[src]

Returns the number of vector lanes.

pub const fn splat(value: i32) -> Self[src]

Constructs a new instance with each element initialized to value.

pub fn extract(self, index: usize) -> i32[src]

Extracts the value at index.

Panics

If index >= Self::lanes().

pub unsafe fn extract_unchecked(self, index: usize) -> i32[src]

Extracts the value at index.

Precondition

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

#[must_use = "replace does not modify the original value - it returns a new vector with the value at `index` replaced by `new_value`d"]
pub fn replace(self, index: usize, new_value: i32) -> Self
[src]

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

Panics

If index >= Self::lanes().

#[must_use = "replace_unchecked does not modify the original value - it returns a new vector with the value at `index` replaced by `new_value`d"]
pub unsafe fn replace_unchecked(self, index: usize, new_value: i32) -> Self
[src]

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

Precondition

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

impl i32x4[src]

pub fn rotate_left(self, n: i32x4) -> i32x4[src]

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.

pub fn rotate_right(self, n: i32x4) -> i32x4[src]

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_left.

impl i32x4[src]

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

Minimum of two vectors.

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

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

Maximum of two vectors.

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

impl i32x4[src]

pub fn wrapping_sum(self) -> i32[src]

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.

pub fn wrapping_product(self) -> i32[src]

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.

impl i32x4[src]

pub fn max_element(self) -> i32[src]

Largest vector element value.

pub fn min_element(self) -> i32[src]

Smallest vector element value.

impl i32x4[src]

pub fn and(self) -> i32[src]

Lane-wise bitwise and of the vector elements.

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

pub fn or(self) -> i32[src]

Lane-wise bitwise or of the vector elements.

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

pub fn xor(self) -> i32[src]

Lane-wise bitwise xor of the vector elements.

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

impl i32x4[src]

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

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.

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

Instantiates a new vector with the values of the slice.

Panics

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

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

Instantiates a new vector with the values of the slice.

Precondition

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

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

Instantiates a new vector with the values of the slice.

Precondition

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

impl i32x4[src]

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

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.

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

Writes the values of the vector to the slice.

Panics

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

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

Writes the values of the vector to the slice.

Precondition

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

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

Writes the values of the vector to the slice.

Precondition

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

impl i32x4[src]

pub fn swap_bytes(self) -> Self[src]

Reverses the byte order of the vector.

pub fn to_le(self) -> Self[src]

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.

pub fn to_be(self) -> Self[src]

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.

pub fn from_le(x: Self) -> Self[src]

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.

pub fn from_be(x: Self) -> Self[src]

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.

impl i32x4[src]

pub fn count_ones(self) -> Self[src]

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

pub fn count_zeros(self) -> Self[src]

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

pub fn leading_zeros(self) -> Self[src]

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

pub fn trailing_zeros(self) -> Self[src]

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

impl i32x4[src]

pub fn shuffle1_dyn<I>(self, indices: I) -> Self where
    Self: Shuffle1Dyn<Indices = I>, 
[src]

Shuffle vector elements according to indices.

impl i32x4[src]

pub fn eq(self, other: Self) -> m32x4[src]

Lane-wise equality comparison.

pub fn ne(self, other: Self) -> m32x4[src]

Lane-wise inequality comparison.

pub fn lt(self, other: Self) -> m32x4[src]

Lane-wise less-than comparison.

pub fn le(self, other: Self) -> m32x4[src]

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

pub fn gt(self, other: Self) -> m32x4[src]

Lane-wise greater-than comparison.

pub fn ge(self, other: Self) -> m32x4[src]

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

impl i32x4[src]

pub fn partial_lex_ord(&self) -> LexicographicallyOrdered<i32x4>[src]

Returns a wrapper that implements PartialOrd.

impl i32x4[src]

pub fn lex_ord(&self) -> LexicographicallyOrdered<i32x4>[src]

Returns a wrapper that implements Ord.

impl i32x4[src]

pub fn bitmask(self) -> u8[src]

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

impl FromCast<Simd<[i8; 4]>> for i32x4[src]

impl FromCast<Simd<[u8; 4]>> for i32x4[src]

impl FromCast<Simd<[m8; 4]>> for i32x4[src]

impl FromCast<Simd<[i16; 4]>> for i32x4[src]

impl FromCast<Simd<[u16; 4]>> for i32x4[src]

impl FromCast<Simd<[m16; 4]>> for i32x4[src]

impl FromCast<Simd<[u32; 4]>> for i32x4[src]

impl FromCast<Simd<[f32; 4]>> for i32x4[src]

impl FromCast<Simd<[m32; 4]>> for i32x4[src]

impl FromCast<Simd<[i64; 4]>> for i32x4[src]

impl FromCast<Simd<[u64; 4]>> for i32x4[src]

impl FromCast<Simd<[f64; 4]>> for i32x4[src]

impl FromCast<Simd<[m64; 4]>> for i32x4[src]

impl FromCast<Simd<[i128; 4]>> for i32x4[src]

impl FromCast<Simd<[u128; 4]>> for i32x4[src]

impl FromCast<Simd<[m128; 4]>> for i32x4[src]

impl FromCast<Simd<[isize; 4]>> for i32x4[src]

impl FromCast<Simd<[usize; 4]>> for i32x4[src]

impl FromCast<Simd<[msize; 4]>> for i32x4[src]

impl Debug for i32x4[src]

impl PartialEq<Simd<[i32; 4]>> for i32x4[src]

impl Eq for i32x4[src]

impl From<[i32; 4]> for i32x4[src]

impl From<Simd<[i8; 4]>> for i32x4[src]

impl From<Simd<[u8; 4]>> for i32x4[src]

impl From<Simd<[i16; 4]>> for i32x4[src]

impl From<Simd<[u16; 4]>> for i32x4[src]

impl Hash for i32x4[src]

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

Feeds a slice of this type into the given [Hasher]. Read more

impl Add<Simd<[i32; 4]>> for i32x4[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<i32> for i32x4[src]

type Output = Self

The resulting type after applying the + operator.

impl Sub<Simd<[i32; 4]>> for i32x4[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<i32> for i32x4[src]

type Output = Self

The resulting type after applying the - operator.

impl Mul<Simd<[i32; 4]>> for i32x4[src]

type Output = Self

The resulting type after applying the * operator.

impl Mul<i32> for i32x4[src]

type Output = Self

The resulting type after applying the * operator.

impl Div<Simd<[i32; 4]>> for i32x4[src]

type Output = Self

The resulting type after applying the / operator.

impl Div<i32> for i32x4[src]

type Output = Self

The resulting type after applying the / operator.

impl Rem<Simd<[i32; 4]>> for i32x4[src]

type Output = Self

The resulting type after applying the % operator.

impl Rem<i32> for i32x4[src]

type Output = Self

The resulting type after applying the % operator.

impl Neg for i32x4[src]

type Output = Self

The resulting type after applying the - operator.

impl AddAssign<Simd<[i32; 4]>> for i32x4[src]

impl AddAssign<i32> for i32x4[src]

impl SubAssign<Simd<[i32; 4]>> for i32x4[src]

impl SubAssign<i32> for i32x4[src]

impl MulAssign<Simd<[i32; 4]>> for i32x4[src]

impl MulAssign<i32> for i32x4[src]

impl DivAssign<Simd<[i32; 4]>> for i32x4[src]

impl DivAssign<i32> for i32x4[src]

impl RemAssign<Simd<[i32; 4]>> for i32x4[src]

impl RemAssign<i32> for i32x4[src]

impl Not for i32x4[src]

type Output = Self

The resulting type after applying the ! operator.

impl BitAnd<Simd<[i32; 4]>> for i32x4[src]

type Output = Self

The resulting type after applying the & operator.

impl BitAnd<i32> for i32x4[src]

type Output = Self

The resulting type after applying the & operator.

impl BitOr<Simd<[i32; 4]>> for i32x4[src]

type Output = Self

The resulting type after applying the | operator.

impl BitOr<i32> for i32x4[src]

type Output = Self

The resulting type after applying the | operator.

impl BitXor<Simd<[i32; 4]>> for i32x4[src]

type Output = Self

The resulting type after applying the ^ operator.

impl BitXor<i32> for i32x4[src]

type Output = Self

The resulting type after applying the ^ operator.

impl Shl<Simd<[i32; 4]>> for i32x4[src]

type Output = Self

The resulting type after applying the << operator.

impl Shl<u32> for i32x4[src]

type Output = Self

The resulting type after applying the << operator.

impl Shr<Simd<[i32; 4]>> for i32x4[src]

type Output = Self

The resulting type after applying the >> operator.

impl Shr<u32> for i32x4[src]

type Output = Self

The resulting type after applying the >> operator.

impl BitAndAssign<Simd<[i32; 4]>> for i32x4[src]

impl BitAndAssign<i32> for i32x4[src]

impl BitOrAssign<Simd<[i32; 4]>> for i32x4[src]

impl BitOrAssign<i32> for i32x4[src]

impl BitXorAssign<Simd<[i32; 4]>> for i32x4[src]

impl BitXorAssign<i32> for i32x4[src]

impl ShlAssign<Simd<[i32; 4]>> for i32x4[src]

impl ShlAssign<u32> for i32x4[src]

impl ShrAssign<Simd<[i32; 4]>> for i32x4[src]

impl ShrAssign<u32> for i32x4[src]

impl Product<Simd<[i32; 4]>> for i32x4[src]

impl<'a> Product<&'a Simd<[i32; 4]>> for i32x4[src]

impl Sum<Simd<[i32; 4]>> for i32x4[src]

impl<'a> Sum<&'a Simd<[i32; 4]>> for i32x4[src]

impl Octal for i32x4[src]

impl Binary for i32x4[src]

impl LowerHex for i32x4[src]

impl UpperHex for i32x4[src]

impl Default for i32x4[src]