Struct coresimd::simd::i8x16
[−]
[src]
#[repr(simd)]pub struct i8x16(_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _);
Methods
impl i8x16[src]
pub const fn new(
x0: i8,
x1: i8,
x2: i8,
x3: i8,
x4: i8,
x5: i8,
x6: i8,
x7: i8,
x8: i8,
x9: i8,
x10: i8,
x11: i8,
x12: i8,
x13: i8,
x14: i8,
x15: i8
) -> i8x16[src]
x0: i8,
x1: i8,
x2: i8,
x3: i8,
x4: i8,
x5: i8,
x6: i8,
x7: i8,
x8: i8,
x9: i8,
x10: i8,
x11: i8,
x12: i8,
x13: i8,
x14: i8,
x15: i8
) -> i8x16
pub fn len() -> i32[src]
pub fn splat(value: i8) -> i8x16[src]
pub fn extract(self, idx: u32) -> i8[src]
pub unsafe fn extract_unchecked(self, idx: u32) -> i8[src]
pub fn replace(self, idx: u32, val: i8) -> i8x16[src]
pub unsafe fn replace_unchecked(self, idx: u32, val: i8) -> i8x16[src]
pub fn store(self, slice: &mut [i8], offset: usize)[src]
pub unsafe fn store_unchecked(self, slice: &mut [i8], offset: usize)[src]
pub fn load(slice: &[i8], offset: usize) -> i8x16[src]
pub unsafe fn load_unchecked(slice: &[i8], offset: usize) -> i8x16[src]
pub fn eq(self, other: i8x16) -> i8x16[src]
pub fn ne(self, other: i8x16) -> i8x16[src]
pub fn lt(self, other: i8x16) -> i8x16[src]
pub fn le(self, other: i8x16) -> i8x16[src]
pub fn gt(self, other: i8x16) -> i8x16[src]
pub fn ge(self, other: i8x16) -> i8x16[src]
impl i8x16[src]
Trait Implementations
impl Clone for i8x16[src]
fn clone(&self) -> i8x16[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 i8x16[src]
impl Debug for i8x16[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl PartialEq for i8x16[src]
fn eq(&self, __arg_0: &i8x16) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &i8x16) -> bool[src]
This method tests for !=.
impl From<i8x16> for u64x2[src]
impl From<i8x16> for i64x2[src]
impl From<i8x16> for u32x4[src]
impl From<i8x16> for i32x4[src]
impl From<i8x16> for u16x8[src]
impl From<i8x16> for i16x8[src]
impl From<i8x16> for u8x16[src]
impl From<u64x2> for i8x16[src]
impl From<i64x2> for i8x16[src]
impl From<u32x4> for i8x16[src]
impl From<i32x4> for i8x16[src]
impl From<u16x8> for i8x16[src]
impl From<i16x8> for i8x16[src]
impl From<u8x16> for i8x16[src]
impl From<__m128i> for i8x16[src]
impl From<i8x16> for __m128i[src]
impl Add for i8x16[src]
type Output = Self
The resulting type after applying the + operator.
fn add(self, other: Self) -> Self[src]
Performs the + operation.
impl Sub for i8x16[src]
type Output = Self
The resulting type after applying the - operator.
fn sub(self, other: Self) -> Self[src]
Performs the - operation.
impl Mul for i8x16[src]
type Output = Self
The resulting type after applying the * operator.
fn mul(self, other: Self) -> Self[src]
Performs the * operation.
impl Div for i8x16[src]
type Output = Self
The resulting type after applying the / operator.
fn div(self, other: Self) -> Self[src]
Performs the / operation.
impl Rem for i8x16[src]
type Output = Self
The resulting type after applying the % operator.
fn rem(self, other: Self) -> Self[src]
Performs the % operation.
impl AddAssign for i8x16[src]
fn add_assign(&mut self, other: Self)[src]
Performs the += operation.
impl SubAssign for i8x16[src]
fn sub_assign(&mut self, other: Self)[src]
Performs the -= operation.
impl MulAssign for i8x16[src]
fn mul_assign(&mut self, other: Self)[src]
Performs the *= operation.
impl DivAssign for i8x16[src]
fn div_assign(&mut self, other: Self)[src]
Performs the /= operation.
impl RemAssign for i8x16[src]
fn rem_assign(&mut self, other: Self)[src]
Performs the %= operation.
impl Not for i8x16[src]
type Output = Self
The resulting type after applying the ! operator.
fn not(self) -> Self[src]
Performs the unary ! operation.
impl BitAnd for i8x16[src]
type Output = Self
The resulting type after applying the & operator.
fn bitand(self, other: Self) -> Self[src]
Performs the & operation.
impl BitOr for i8x16[src]
type Output = Self
The resulting type after applying the | operator.
fn bitor(self, other: Self) -> Self[src]
Performs the | operation.
impl BitXor for i8x16[src]
type Output = Self
The resulting type after applying the ^ operator.
fn bitxor(self, other: Self) -> Self[src]
Performs the ^ operation.
impl BitAndAssign for i8x16[src]
fn bitand_assign(&mut self, other: Self)[src]
Performs the &= operation.
impl BitOrAssign for i8x16[src]
fn bitor_assign(&mut self, other: Self)[src]
Performs the |= operation.
impl BitXorAssign for i8x16[src]
fn bitxor_assign(&mut self, other: Self)[src]
Performs the ^= operation.
impl Shl<u8> for i8x16[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 i8x16[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 i8x16[src]
fn shl_assign(&mut self, other: u8)[src]
Performs the <<= operation.
impl ShrAssign<u8> for i8x16[src]
fn shr_assign(&mut self, other: u8)[src]
Performs the >>= operation.
impl Shl<u16> for i8x16[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 i8x16[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 i8x16[src]
fn shl_assign(&mut self, other: u16)[src]
Performs the <<= operation.
impl ShrAssign<u16> for i8x16[src]
fn shr_assign(&mut self, other: u16)[src]
Performs the >>= operation.
impl Shl<u32> for i8x16[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 i8x16[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 i8x16[src]
fn shl_assign(&mut self, other: u32)[src]
Performs the <<= operation.
impl ShrAssign<u32> for i8x16[src]
fn shr_assign(&mut self, other: u32)[src]
Performs the >>= operation.
impl Shl<u64> for i8x16[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 i8x16[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 i8x16[src]
fn shl_assign(&mut self, other: u64)[src]
Performs the <<= operation.
impl ShrAssign<u64> for i8x16[src]
fn shr_assign(&mut self, other: u64)[src]
Performs the >>= operation.
impl Shl<usize> for i8x16[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 i8x16[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 i8x16[src]
fn shl_assign(&mut self, other: usize)[src]
Performs the <<= operation.
impl ShrAssign<usize> for i8x16[src]
fn shr_assign(&mut self, other: usize)[src]
Performs the >>= operation.
impl Shl<i8> for i8x16[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 i8x16[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 i8x16[src]
fn shl_assign(&mut self, other: i8)[src]
Performs the <<= operation.
impl ShrAssign<i8> for i8x16[src]
fn shr_assign(&mut self, other: i8)[src]
Performs the >>= operation.
impl Shl<i16> for i8x16[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 i8x16[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 i8x16[src]
fn shl_assign(&mut self, other: i16)[src]
Performs the <<= operation.
impl ShrAssign<i16> for i8x16[src]
fn shr_assign(&mut self, other: i16)[src]
Performs the >>= operation.
impl Shl<i32> for i8x16[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 i8x16[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 i8x16[src]
fn shl_assign(&mut self, other: i32)[src]
Performs the <<= operation.
impl ShrAssign<i32> for i8x16[src]
fn shr_assign(&mut self, other: i32)[src]
Performs the >>= operation.
impl Shl<i64> for i8x16[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 i8x16[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 i8x16[src]
fn shl_assign(&mut self, other: i64)[src]
Performs the <<= operation.
impl ShrAssign<i64> for i8x16[src]
fn shr_assign(&mut self, other: i64)[src]
Performs the >>= operation.
impl Shl<isize> for i8x16[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 i8x16[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 i8x16[src]
fn shl_assign(&mut self, other: isize)[src]
Performs the <<= operation.
impl ShrAssign<isize> for i8x16[src]
fn shr_assign(&mut self, other: isize)[src]
Performs the >>= operation.