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