pub struct __m128h(/* private fields */);Available on x86-64 only.
Expand description
128-bit wide set of 8 f16 types, x86-specific
This type is the same as the __m128h type defined by Intel,
representing a 128-bit SIMD register which internally is consisted of
8 packed f16 instances. its purpose is for f16 related intrinsic
implementations.
The in-memory representation of this type is the same as the one of an equivalent array (i.e. the in-memory order of elements is the same, and there is no padding); however, the alignment is different and equal to the size of the type. Note that the ABI for function calls may not be the same.
Trait Implementations§
1.94.0 · Source§impl Clone for __m128h
Available on x86 or x86-64 only.
impl Clone for __m128h
Available on x86 or x86-64 only.
Source§fn clone(&self) -> __m128h
fn clone(&self) -> __m128h
This item is validated for IEC 61508 (SIL 2) and ISO 26262 (ASIL B).
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)where
Self:,
fn clone_from(&mut self, source: &Self)where
Self:,
This item is validated for IEC 61508 (SIL 2) and ISO 26262 (ASIL B).
Performs copy-assignment from
source. Read moreimpl Copy for __m128h
Available on x86 or x86-64 only.
Auto Trait Implementations§
impl Freeze for __m128h
impl RefUnwindSafe for __m128h
impl Send for __m128h
impl Sync for __m128h
impl Unpin for __m128h
impl UnsafeUnpin for __m128h
impl UnwindSafe for __m128h
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
This item is validated for IEC 61508 (SIL 2) and ISO 26262 (ASIL B).
Mutably borrows from an owned value. Read more