#[repr(C, align(32))]pub struct f64x4<S: Simd> {
pub val: [f64; 4],
pub simd: S,
}
Fields§
§val: [f64; 4]
§simd: S
Implementations§
Source§impl<S: Simd> f64x4<S>
impl<S: Simd> f64x4<S>
pub fn abs(self) -> f64x4<S>
pub fn neg(self) -> f64x4<S>
pub fn sqrt(self) -> f64x4<S>
pub fn add(self, rhs: impl SimdInto<Self, S>) -> f64x4<S>
pub fn sub(self, rhs: impl SimdInto<Self, S>) -> f64x4<S>
pub fn mul(self, rhs: impl SimdInto<Self, S>) -> f64x4<S>
pub fn div(self, rhs: impl SimdInto<Self, S>) -> f64x4<S>
pub fn copysign(self, rhs: impl SimdInto<Self, S>) -> f64x4<S>
pub fn simd_eq(self, rhs: impl SimdInto<Self, S>) -> mask64x4<S>
pub fn simd_lt(self, rhs: impl SimdInto<Self, S>) -> mask64x4<S>
pub fn simd_le(self, rhs: impl SimdInto<Self, S>) -> mask64x4<S>
pub fn simd_ge(self, rhs: impl SimdInto<Self, S>) -> mask64x4<S>
pub fn simd_gt(self, rhs: impl SimdInto<Self, S>) -> mask64x4<S>
pub fn max(self, rhs: impl SimdInto<Self, S>) -> f64x4<S>
pub fn max_precise(self, rhs: impl SimdInto<Self, S>) -> f64x4<S>
pub fn min(self, rhs: impl SimdInto<Self, S>) -> f64x4<S>
pub fn min_precise(self, rhs: impl SimdInto<Self, S>) -> f64x4<S>
pub fn floor(self) -> f64x4<S>
pub fn fract(self) -> f64x4<S>
pub fn trunc(self) -> f64x4<S>
pub fn combine(self, rhs: impl SimdInto<Self, S>) -> f64x8<S>
pub fn reinterpret_f32(self) -> f32x8<S>
Trait Implementations§
Source§impl<S: Simd> SimdBase<f64, S> for f64x4<S>
impl<S: Simd> SimdBase<f64, S> for f64x4<S>
Source§impl<S: Simd> SimdFloat<f64, S> for f64x4<S>
impl<S: Simd> SimdFloat<f64, S> for f64x4<S>
fn abs(self) -> f64x4<S>
fn sqrt(self) -> f64x4<S>
fn copysign(self, rhs: impl SimdInto<Self, S>) -> f64x4<S>
fn simd_eq(self, rhs: impl SimdInto<Self, S>) -> mask64x4<S>
fn simd_lt(self, rhs: impl SimdInto<Self, S>) -> mask64x4<S>
fn simd_le(self, rhs: impl SimdInto<Self, S>) -> mask64x4<S>
fn simd_ge(self, rhs: impl SimdInto<Self, S>) -> mask64x4<S>
fn simd_gt(self, rhs: impl SimdInto<Self, S>) -> mask64x4<S>
fn zip_low(self, rhs: impl SimdInto<Self, S>) -> f64x4<S>
fn zip_high(self, rhs: impl SimdInto<Self, S>) -> f64x4<S>
fn unzip_low(self, rhs: impl SimdInto<Self, S>) -> f64x4<S>
fn unzip_high(self, rhs: impl SimdInto<Self, S>) -> f64x4<S>
fn max(self, rhs: impl SimdInto<Self, S>) -> f64x4<S>
fn max_precise(self, rhs: impl SimdInto<Self, S>) -> f64x4<S>
fn min(self, rhs: impl SimdInto<Self, S>) -> f64x4<S>
fn min_precise(self, rhs: impl SimdInto<Self, S>) -> f64x4<S>
fn madd( self, op1: impl SimdInto<Self, S>, op2: impl SimdInto<Self, S>, ) -> f64x4<S>
fn msub( self, op1: impl SimdInto<Self, S>, op2: impl SimdInto<Self, S>, ) -> f64x4<S>
fn floor(self) -> f64x4<S>
fn fract(self) -> f64x4<S>
fn trunc(self) -> f64x4<S>
fn to_int<T: SimdCvtTruncate<Self>>(self) -> T
impl<S: Copy + Simd> Copy for f64x4<S>
Auto Trait Implementations§
impl<S> Freeze for f64x4<S>where
S: Freeze,
impl<S> RefUnwindSafe for f64x4<S>where
S: RefUnwindSafe,
impl<S> Send for f64x4<S>
impl<S> Sync for f64x4<S>
impl<S> Unpin for f64x4<S>where
S: Unpin,
impl<S> UnwindSafe for f64x4<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