#[repr(C, align(64))]pub struct u8x64<S: Simd> {
pub val: [u8; 64],
pub simd: S,
}
Fields§
§val: [u8; 64]
§simd: S
Implementations§
Source§impl<S: Simd> u8x64<S>
impl<S: Simd> u8x64<S>
pub fn not(self) -> u8x64<S>
pub fn add(self, rhs: impl SimdInto<Self, S>) -> u8x64<S>
pub fn sub(self, rhs: impl SimdInto<Self, S>) -> u8x64<S>
pub fn mul(self, rhs: impl SimdInto<Self, S>) -> u8x64<S>
pub fn and(self, rhs: impl SimdInto<Self, S>) -> u8x64<S>
pub fn or(self, rhs: impl SimdInto<Self, S>) -> u8x64<S>
pub fn xor(self, rhs: impl SimdInto<Self, S>) -> u8x64<S>
pub fn shr(self, shift: u32) -> u8x64<S>
pub fn simd_eq(self, rhs: impl SimdInto<Self, S>) -> mask8x64<S>
pub fn simd_lt(self, rhs: impl SimdInto<Self, S>) -> mask8x64<S>
pub fn simd_le(self, rhs: impl SimdInto<Self, S>) -> mask8x64<S>
pub fn simd_ge(self, rhs: impl SimdInto<Self, S>) -> mask8x64<S>
pub fn simd_gt(self, rhs: impl SimdInto<Self, S>) -> mask8x64<S>
pub fn min(self, rhs: impl SimdInto<Self, S>) -> u8x64<S>
pub fn max(self, rhs: impl SimdInto<Self, S>) -> u8x64<S>
pub fn reinterpret_u32(self) -> u32x16<S>
Trait Implementations§
Source§impl<S: Simd> SimdBase<u8, S> for u8x64<S>
impl<S: Simd> SimdBase<u8, S> for u8x64<S>
const N: usize = 64usize
fn as_slice(&self) -> &[u8] ⓘ
fn as_mut_slice(&mut self) -> &mut [u8] ⓘ
Source§fn from_slice(simd: S, slice: &[u8]) -> Self
fn from_slice(simd: S, slice: &[u8]) -> Self
Create a SIMD vector from a slice. Read more
fn splat(simd: S, val: u8) -> Self
fn block_splat(block: Self::Block) -> Self
Source§impl<S: Simd> SimdInt<u8, S> for u8x64<S>
impl<S: Simd> SimdInt<u8, S> for u8x64<S>
fn simd_eq(self, rhs: impl SimdInto<Self, S>) -> mask8x64<S>
fn simd_lt(self, rhs: impl SimdInto<Self, S>) -> mask8x64<S>
fn simd_le(self, rhs: impl SimdInto<Self, S>) -> mask8x64<S>
fn simd_ge(self, rhs: impl SimdInto<Self, S>) -> mask8x64<S>
fn simd_gt(self, rhs: impl SimdInto<Self, S>) -> mask8x64<S>
fn zip_low(self, rhs: impl SimdInto<Self, S>) -> u8x64<S>
fn zip_high(self, rhs: impl SimdInto<Self, S>) -> u8x64<S>
fn unzip_low(self, rhs: impl SimdInto<Self, S>) -> u8x64<S>
fn unzip_high(self, rhs: impl SimdInto<Self, S>) -> u8x64<S>
fn min(self, rhs: impl SimdInto<Self, S>) -> u8x64<S>
fn max(self, rhs: impl SimdInto<Self, S>) -> u8x64<S>
fn to_float<T: SimdCvtFloat<Self>>(self) -> T
impl<S: Copy + Simd> Copy for u8x64<S>
Auto Trait Implementations§
impl<S> Freeze for u8x64<S>where
S: Freeze,
impl<S> RefUnwindSafe for u8x64<S>where
S: RefUnwindSafe,
impl<S> Send for u8x64<S>
impl<S> Sync for u8x64<S>
impl<S> Unpin for u8x64<S>where
S: Unpin,
impl<S> UnwindSafe for u8x64<S>where
S: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more