[][src]Struct wide::f32x8

#[repr(C, align(32))]pub struct f32x8 { /* fields omitted */ }

Implementations

impl f32x8[src]

pub const ONE: f32x8[src]

pub const HALF: f32x8[src]

pub const ZERO: f32x8[src]

pub const E: f32x8[src]

pub const FRAC_1_PI: f32x8[src]

pub const FRAC_2_PI: f32x8[src]

pub const FRAC_2_SQRT_PI: f32x8[src]

pub const FRAC_1_SQRT_2: f32x8[src]

pub const FRAC_PI_2: f32x8[src]

pub const FRAC_PI_3: f32x8[src]

pub const FRAC_PI_4: f32x8[src]

pub const FRAC_PI_6: f32x8[src]

pub const FRAC_PI_8: f32x8[src]

pub const LN_2: f32x8[src]

pub const LN_10: f32x8[src]

pub const LOG2_E: f32x8[src]

pub const LOG10_E: f32x8[src]

pub const LOG10_2: f32x8[src]

pub const LOG2_10: f32x8[src]

pub const PI: f32x8[src]

pub const SQRT_2: f32x8[src]

pub const TAU: f32x8[src]

impl f32x8[src]

#[must_use]pub fn blend(self, t: Self, f: Self) -> Self[src]

#[must_use]pub fn abs(self) -> Self[src]

#[must_use]pub fn max(self, rhs: Self) -> Self[src]

#[must_use]pub fn min(self, rhs: Self) -> Self[src]

#[must_use]pub fn is_nan(self) -> Self[src]

#[must_use]pub fn is_finite(self) -> Self[src]

#[must_use]pub fn is_inf(self) -> Self[src]

#[must_use]pub fn round(self) -> Self[src]

#[must_use]pub fn round_int(self) -> i32x8[src]

#[must_use]pub fn mul_add(self, m: Self, a: Self) -> Self[src]

#[must_use]pub fn mul_sub(self, m: Self, a: Self) -> Self[src]

#[must_use]pub fn mul_neg_add(self, m: Self, a: Self) -> Self[src]

#[must_use]pub fn mul_neg_sub(self, m: Self, a: Self) -> Self[src]

#[must_use]pub fn flip_signs(self, signs: Self) -> Self[src]

#[must_use]pub fn copysign(self, sign: Self) -> Self[src]

pub fn asin_acos(self) -> (Self, Self)[src]

#[must_use]pub fn asin(self) -> Self[src]

#[must_use]pub fn acos(self) -> Self[src]

pub fn atan(self) -> Self[src]

pub fn atan2(self, x: Self) -> Self[src]

#[must_use]pub fn sin_cos(self) -> (Self, Self)[src]

#[must_use]pub fn sin(self) -> Self[src]

#[must_use]pub fn cos(self) -> Self[src]

#[must_use]pub fn tan(self) -> Self[src]

#[must_use]pub fn to_degrees(self) -> Self[src]

#[must_use]pub fn to_radians(self) -> Self[src]

#[must_use]pub fn recip(self) -> Self[src]

#[must_use]pub fn recip_sqrt(self) -> Self[src]

#[must_use]pub fn sqrt(self) -> Self[src]

#[must_use]pub fn move_mask(self) -> i32[src]

#[must_use]pub fn any(self) -> bool[src]

#[must_use]pub fn all(self) -> bool[src]

#[must_use]pub fn none(self) -> bool[src]

#[must_use]pub fn exp(self) -> Self[src]

Calculate the exponent of a packed f32x8

pub fn sign_bit(self) -> Self[src]

pub fn reduce_add(self) -> f32[src]

#[must_use]pub fn ln(self) -> Self[src]

Natural log (ln(x))

#[must_use]pub fn log2(self) -> Self[src]

#[must_use]pub fn log10(self) -> Self[src]

#[must_use]pub fn pow_f32x8(self, y: Self) -> Self[src]

pub fn powf(self, y: f32) -> Self[src]

impl f32x8[src]

#[must_use]pub fn splat(elem: f32) -> f32x8[src]

Trait Implementations

impl<'_> Add<&'_ f32x8> for f32x8[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<f32> for f32x8[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<f32x8> for f32x8[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<f32x8> for f32[src]

type Output = f32x8

The resulting type after applying the + operator.

impl<'_> AddAssign<&'_ f32x8> for f32x8[src]

impl AddAssign<f32x8> for f32x8[src]

impl Binary for f32x8[src]

impl<'_> BitAnd<&'_ f32x8> for f32x8[src]

type Output = Self

The resulting type after applying the & operator.

impl BitAnd<f32x8> for f32x8[src]

type Output = Self

The resulting type after applying the & operator.

impl<'_> BitAndAssign<&'_ f32x8> for f32x8[src]

impl BitAndAssign<f32x8> for f32x8[src]

impl<'_> BitOr<&'_ f32x8> for f32x8[src]

type Output = Self

The resulting type after applying the | operator.

impl BitOr<f32x8> for f32x8[src]

type Output = Self

The resulting type after applying the | operator.

impl<'_> BitOrAssign<&'_ f32x8> for f32x8[src]

impl BitOrAssign<f32x8> for f32x8[src]

impl<'_> BitXor<&'_ f32x8> for f32x8[src]

type Output = Self

The resulting type after applying the ^ operator.

impl BitXor<f32x8> for f32x8[src]

type Output = Self

The resulting type after applying the ^ operator.

impl<'_> BitXorAssign<&'_ f32x8> for f32x8[src]

impl BitXorAssign<f32x8> for f32x8[src]

impl Clone for f32x8[src]

impl CmpEq<f32> for f32x8[src]

type Output = Self

impl CmpEq<f32x8> for f32x8[src]

type Output = Self

impl CmpGe<f32> for f32x8[src]

type Output = Self

impl CmpGe<f32x8> for f32x8[src]

type Output = Self

impl CmpGt<f32> for f32x8[src]

type Output = Self

impl CmpGt<f32x8> for f32x8[src]

type Output = Self

impl CmpLe<f32> for f32x8[src]

type Output = Self

impl CmpLe<f32x8> for f32x8[src]

type Output = Self

impl CmpLt<f32> for f32x8[src]

type Output = Self

impl CmpLt<f32x8> for f32x8[src]

type Output = Self

impl CmpNe<f32> for f32x8[src]

type Output = Self

impl CmpNe<f32x8> for f32x8[src]

type Output = Self

impl Copy for f32x8[src]

impl Debug for f32x8[src]

impl Default for f32x8[src]

impl Display for f32x8[src]

impl<'_> Div<&'_ f32x8> for f32x8[src]

type Output = Self

The resulting type after applying the / operator.

impl Div<f32> for f32x8[src]

type Output = Self

The resulting type after applying the / operator.

impl Div<f32x8> for f32x8[src]

type Output = Self

The resulting type after applying the / operator.

impl Div<f32x8> for f32[src]

type Output = f32x8

The resulting type after applying the / operator.

impl<'_> DivAssign<&'_ f32x8> for f32x8[src]

impl DivAssign<f32x8> for f32x8[src]

impl<'_> From<&'_ [f32]> for f32x8[src]

impl From<[f32; 8]> for f32x8[src]

impl From<f32> for f32x8[src]

#[must_use]fn from(elem: f32) -> Self[src]

Splats the single value given across all lanes.

impl From<f32x8> for [f32; 8][src]

impl LowerExp for f32x8[src]

impl LowerHex for f32x8[src]

impl<'_> Mul<&'_ f32x8> for f32x8[src]

type Output = Self

The resulting type after applying the * operator.

impl Mul<f32> for f32x8[src]

type Output = Self

The resulting type after applying the * operator.

impl Mul<f32x8> for f32x8[src]

type Output = Self

The resulting type after applying the * operator.

impl Mul<f32x8> for f32[src]

type Output = f32x8

The resulting type after applying the * operator.

impl<'_> MulAssign<&'_ f32x8> for f32x8[src]

impl MulAssign<f32x8> for f32x8[src]

impl Neg for f32x8[src]

type Output = Self

The resulting type after applying the - operator.

impl<'_> Neg for &'_ f32x8[src]

type Output = f32x8

The resulting type after applying the - operator.

impl Not for f32x8[src]

type Output = Self

The resulting type after applying the ! operator.

impl Octal for f32x8[src]

impl PartialEq<f32x8> for f32x8[src]

impl Pod for f32x8[src]

impl<RHS> Product<RHS> for f32x8 where
    f32x8: MulAssign<RHS>, 
[src]

impl StructuralPartialEq for f32x8[src]

impl<'_> Sub<&'_ f32x8> for f32x8[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<f32> for f32x8[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<f32x8> for f32x8[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<f32x8> for f32[src]

type Output = f32x8

The resulting type after applying the - operator.

impl<'_> SubAssign<&'_ f32x8> for f32x8[src]

impl SubAssign<f32x8> for f32x8[src]

impl UpperExp for f32x8[src]

impl UpperHex for f32x8[src]

impl Zeroable for f32x8[src]

Auto Trait Implementations

impl Send for f32x8

impl Sync for f32x8

impl Unpin for f32x8

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.