Struct coresimd::simd::u8x32
[−]
[src]
#[repr(simd)]pub struct u8x32(_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _);
Methods
impl u8x32[src]
pub const fn new(
x0: u8,
x1: u8,
x2: u8,
x3: u8,
x4: u8,
x5: u8,
x6: u8,
x7: u8,
x8: u8,
x9: u8,
x10: u8,
x11: u8,
x12: u8,
x13: u8,
x14: u8,
x15: u8,
x16: u8,
x17: u8,
x18: u8,
x19: u8,
x20: u8,
x21: u8,
x22: u8,
x23: u8,
x24: u8,
x25: u8,
x26: u8,
x27: u8,
x28: u8,
x29: u8,
x30: u8,
x31: u8
) -> u8x32[src]
x0: u8,
x1: u8,
x2: u8,
x3: u8,
x4: u8,
x5: u8,
x6: u8,
x7: u8,
x8: u8,
x9: u8,
x10: u8,
x11: u8,
x12: u8,
x13: u8,
x14: u8,
x15: u8,
x16: u8,
x17: u8,
x18: u8,
x19: u8,
x20: u8,
x21: u8,
x22: u8,
x23: u8,
x24: u8,
x25: u8,
x26: u8,
x27: u8,
x28: u8,
x29: u8,
x30: u8,
x31: u8
) -> u8x32
pub fn len() -> i32[src]
pub fn splat(value: u8) -> u8x32[src]
pub fn extract(self, idx: u32) -> u8[src]
pub unsafe fn extract_unchecked(self, idx: u32) -> u8[src]
pub fn replace(self, idx: u32, val: u8) -> u8x32[src]
pub unsafe fn replace_unchecked(self, idx: u32, val: u8) -> u8x32[src]
pub fn store(self, slice: &mut [u8], offset: usize)[src]
pub unsafe fn store_unchecked(self, slice: &mut [u8], offset: usize)[src]
pub fn load(slice: &[u8], offset: usize) -> u8x32[src]
pub unsafe fn load_unchecked(slice: &[u8], offset: usize) -> u8x32[src]
pub fn eq(self, other: u8x32) -> i8x32[src]
pub fn ne(self, other: u8x32) -> i8x32[src]
pub fn lt(self, other: u8x32) -> i8x32[src]
pub fn le(self, other: u8x32) -> i8x32[src]
pub fn gt(self, other: u8x32) -> i8x32[src]
pub fn ge(self, other: u8x32) -> i8x32[src]
impl u8x32[src]
Trait Implementations
impl Clone for u8x32[src]
fn clone(&self) -> u8x32[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Copy for u8x32[src]
impl Debug for u8x32[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl PartialEq for u8x32[src]
fn eq(&self, __arg_0: &u8x32) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &u8x32) -> bool[src]
This method tests for !=.
impl From<u8x32> for u64x4[src]
impl From<u8x32> for i64x4[src]
impl From<u8x32> for u32x8[src]
impl From<u8x32> for i32x8[src]
impl From<u8x32> for u16x16[src]
impl From<u8x32> for i16x16[src]
impl From<u64x4> for u8x32[src]
impl From<i64x4> for u8x32[src]
impl From<u32x8> for u8x32[src]
impl From<i32x8> for u8x32[src]
impl From<u16x16> for u8x32[src]
impl From<i16x16> for u8x32[src]
impl From<i8x32> for u8x32[src]
impl From<__m256i> for u8x32[src]
impl From<u8x32> for i8x32[src]
impl From<u8x32> for __m256i[src]
impl Add for u8x32[src]
type Output = Self
The resulting type after applying the + operator.
fn add(self, other: Self) -> Self[src]
Performs the + operation.
impl Sub for u8x32[src]
type Output = Self
The resulting type after applying the - operator.
fn sub(self, other: Self) -> Self[src]
Performs the - operation.
impl Mul for u8x32[src]
type Output = Self
The resulting type after applying the * operator.
fn mul(self, other: Self) -> Self[src]
Performs the * operation.
impl Div for u8x32[src]
type Output = Self
The resulting type after applying the / operator.
fn div(self, other: Self) -> Self[src]
Performs the / operation.
impl Rem for u8x32[src]
type Output = Self
The resulting type after applying the % operator.
fn rem(self, other: Self) -> Self[src]
Performs the % operation.
impl AddAssign for u8x32[src]
fn add_assign(&mut self, other: Self)[src]
Performs the += operation.
impl SubAssign for u8x32[src]
fn sub_assign(&mut self, other: Self)[src]
Performs the -= operation.
impl MulAssign for u8x32[src]
fn mul_assign(&mut self, other: Self)[src]
Performs the *= operation.
impl DivAssign for u8x32[src]
fn div_assign(&mut self, other: Self)[src]
Performs the /= operation.
impl RemAssign for u8x32[src]
fn rem_assign(&mut self, other: Self)[src]
Performs the %= operation.
impl Not for u8x32[src]
type Output = Self
The resulting type after applying the ! operator.
fn not(self) -> Self[src]
Performs the unary ! operation.
impl BitAnd for u8x32[src]
type Output = Self
The resulting type after applying the & operator.
fn bitand(self, other: Self) -> Self[src]
Performs the & operation.
impl BitOr for u8x32[src]
type Output = Self
The resulting type after applying the | operator.
fn bitor(self, other: Self) -> Self[src]
Performs the | operation.
impl BitXor for u8x32[src]
type Output = Self
The resulting type after applying the ^ operator.
fn bitxor(self, other: Self) -> Self[src]
Performs the ^ operation.
impl BitAndAssign for u8x32[src]
fn bitand_assign(&mut self, other: Self)[src]
Performs the &= operation.
impl BitOrAssign for u8x32[src]
fn bitor_assign(&mut self, other: Self)[src]
Performs the |= operation.
impl BitXorAssign for u8x32[src]
fn bitxor_assign(&mut self, other: Self)[src]
Performs the ^= operation.
impl Shl<u8> for u8x32[src]
type Output = Self
The resulting type after applying the << operator.
fn shl(self, other: u8) -> Self[src]
Performs the << operation.
impl Shr<u8> for u8x32[src]
type Output = Self
The resulting type after applying the >> operator.
fn shr(self, other: u8) -> Self[src]
Performs the >> operation.
impl ShlAssign<u8> for u8x32[src]
fn shl_assign(&mut self, other: u8)[src]
Performs the <<= operation.
impl ShrAssign<u8> for u8x32[src]
fn shr_assign(&mut self, other: u8)[src]
Performs the >>= operation.
impl Shl<u16> for u8x32[src]
type Output = Self
The resulting type after applying the << operator.
fn shl(self, other: u16) -> Self[src]
Performs the << operation.
impl Shr<u16> for u8x32[src]
type Output = Self
The resulting type after applying the >> operator.
fn shr(self, other: u16) -> Self[src]
Performs the >> operation.
impl ShlAssign<u16> for u8x32[src]
fn shl_assign(&mut self, other: u16)[src]
Performs the <<= operation.
impl ShrAssign<u16> for u8x32[src]
fn shr_assign(&mut self, other: u16)[src]
Performs the >>= operation.
impl Shl<u32> for u8x32[src]
type Output = Self
The resulting type after applying the << operator.
fn shl(self, other: u32) -> Self[src]
Performs the << operation.
impl Shr<u32> for u8x32[src]
type Output = Self
The resulting type after applying the >> operator.
fn shr(self, other: u32) -> Self[src]
Performs the >> operation.
impl ShlAssign<u32> for u8x32[src]
fn shl_assign(&mut self, other: u32)[src]
Performs the <<= operation.
impl ShrAssign<u32> for u8x32[src]
fn shr_assign(&mut self, other: u32)[src]
Performs the >>= operation.
impl Shl<u64> for u8x32[src]
type Output = Self
The resulting type after applying the << operator.
fn shl(self, other: u64) -> Self[src]
Performs the << operation.
impl Shr<u64> for u8x32[src]
type Output = Self
The resulting type after applying the >> operator.
fn shr(self, other: u64) -> Self[src]
Performs the >> operation.
impl ShlAssign<u64> for u8x32[src]
fn shl_assign(&mut self, other: u64)[src]
Performs the <<= operation.
impl ShrAssign<u64> for u8x32[src]
fn shr_assign(&mut self, other: u64)[src]
Performs the >>= operation.
impl Shl<usize> for u8x32[src]
type Output = Self
The resulting type after applying the << operator.
fn shl(self, other: usize) -> Self[src]
Performs the << operation.
impl Shr<usize> for u8x32[src]
type Output = Self
The resulting type after applying the >> operator.
fn shr(self, other: usize) -> Self[src]
Performs the >> operation.
impl ShlAssign<usize> for u8x32[src]
fn shl_assign(&mut self, other: usize)[src]
Performs the <<= operation.
impl ShrAssign<usize> for u8x32[src]
fn shr_assign(&mut self, other: usize)[src]
Performs the >>= operation.
impl Shl<i8> for u8x32[src]
type Output = Self
The resulting type after applying the << operator.
fn shl(self, other: i8) -> Self[src]
Performs the << operation.
impl Shr<i8> for u8x32[src]
type Output = Self
The resulting type after applying the >> operator.
fn shr(self, other: i8) -> Self[src]
Performs the >> operation.
impl ShlAssign<i8> for u8x32[src]
fn shl_assign(&mut self, other: i8)[src]
Performs the <<= operation.
impl ShrAssign<i8> for u8x32[src]
fn shr_assign(&mut self, other: i8)[src]
Performs the >>= operation.
impl Shl<i16> for u8x32[src]
type Output = Self
The resulting type after applying the << operator.
fn shl(self, other: i16) -> Self[src]
Performs the << operation.
impl Shr<i16> for u8x32[src]
type Output = Self
The resulting type after applying the >> operator.
fn shr(self, other: i16) -> Self[src]
Performs the >> operation.
impl ShlAssign<i16> for u8x32[src]
fn shl_assign(&mut self, other: i16)[src]
Performs the <<= operation.
impl ShrAssign<i16> for u8x32[src]
fn shr_assign(&mut self, other: i16)[src]
Performs the >>= operation.
impl Shl<i32> for u8x32[src]
type Output = Self
The resulting type after applying the << operator.
fn shl(self, other: i32) -> Self[src]
Performs the << operation.
impl Shr<i32> for u8x32[src]
type Output = Self
The resulting type after applying the >> operator.
fn shr(self, other: i32) -> Self[src]
Performs the >> operation.
impl ShlAssign<i32> for u8x32[src]
fn shl_assign(&mut self, other: i32)[src]
Performs the <<= operation.
impl ShrAssign<i32> for u8x32[src]
fn shr_assign(&mut self, other: i32)[src]
Performs the >>= operation.
impl Shl<i64> for u8x32[src]
type Output = Self
The resulting type after applying the << operator.
fn shl(self, other: i64) -> Self[src]
Performs the << operation.
impl Shr<i64> for u8x32[src]
type Output = Self
The resulting type after applying the >> operator.
fn shr(self, other: i64) -> Self[src]
Performs the >> operation.
impl ShlAssign<i64> for u8x32[src]
fn shl_assign(&mut self, other: i64)[src]
Performs the <<= operation.
impl ShrAssign<i64> for u8x32[src]
fn shr_assign(&mut self, other: i64)[src]
Performs the >>= operation.
impl Shl<isize> for u8x32[src]
type Output = Self
The resulting type after applying the << operator.
fn shl(self, other: isize) -> Self[src]
Performs the << operation.
impl Shr<isize> for u8x32[src]
type Output = Self
The resulting type after applying the >> operator.
fn shr(self, other: isize) -> Self[src]
Performs the >> operation.
impl ShlAssign<isize> for u8x32[src]
fn shl_assign(&mut self, other: isize)[src]
Performs the <<= operation.
impl ShrAssign<isize> for u8x32[src]
fn shr_assign(&mut self, other: isize)[src]
Performs the >>= operation.