Trait simd::x86::sse2::Sse2U8x16 [] [src]

pub trait Sse2U8x16 {
    fn move_mask(self) -> u32;
    fn adds(self, other: Self) -> Self;
    fn subs(self, other: Self) -> Self;
    fn avg(self, other: Self) -> Self;
    fn max(self, other: Self) -> Self;
    fn min(self, other: Self) -> Self;
    fn sad(self, other: Self) -> u64x2;
}

Required Methods

fn move_mask(self) -> u32

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

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

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

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

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

fn sad(self, other: Self) -> u64x2

Implementors