Struct vector_bool_char

#[repr(simd)]
pub struct vector_bool_char(pub(in ::core_arch::s390x::vector) [i8; 16]);

s390x-specific 128-bit wide vector mask of sixteen packed elements

Fields

0: [i8; 16]

Implementations

impl vector_bool_char

fn splat(value: i8) -> vector_bool_char

Put the same value in every lane.

const fn as_array(&self) -> &[i8; 16]

Returns an array reference containing the entire SIMD vector.

fn as_mut_array(&mut self) -> &mut [i8; 16]

Returns a mutable array reference containing the entire SIMD vector.

Trait Implementations

impl Clone for vector_bool_char

fn clone(&self) -> vector_bool_char

impl Copy for vector_bool_char

impl Debug for vector_bool_char

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl From<Simd<i8, 16>> for vector_bool_char

fn from(simd: Simd<i8, 16>) -> Self

impl From<SimdM<i8, 16>> for vector_bool_char

fn from(value: SimdM<i8, 16>) -> Self

impl TrivialClone for vector_bool_char

impl VectorAdd<vector_signed_char> for vector_bool_char

type Result = vector_signed_char;
unsafe fn vec_add(self, other: vector_signed_char) -> Self::Result

impl VectorAdd<vector_unsigned_char> for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_add(self, other: vector_unsigned_char) -> Self::Result

impl VectorAnd<vector_signed_char> for vector_bool_char

type Result = vector_signed_char;
unsafe fn vec_and(self, b: vector_signed_char) -> Self::Result

impl VectorAnd<vector_unsigned_char> for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_and(self, b: vector_unsigned_char) -> Self::Result

impl VectorAndc<vector_bool_char> for vector_bool_char

type Result = vector_bool_char;
unsafe fn vec_andc(self, b: vector_bool_char) -> Self::Result

impl VectorCopyUntilZero for vector_bool_char

unsafe fn vec_cp_until_zero(self) -> Self

impl VectorCopyUntilZeroCC for vector_bool_char

unsafe fn vec_cp_until_zero_cc(self) -> (Self, i32)

impl VectorEquality for vector_bool_char

type Result = vector_bool_char;

impl VectorEqualityIdx for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_cmpeq_idx(self, other: Self) -> Self::Result
unsafe fn vec_cmpne_idx(self, other: Self) -> Self::Result
unsafe fn vec_cmpeq_or_0_idx(self, other: Self) -> Self::Result
unsafe fn vec_cmpne_or_0_idx(self, other: Self) -> Self::Result
unsafe fn vec_cmpeq_idx_cc(self, other: Self) -> (Self::Result, i32)
unsafe fn vec_cmpne_idx_cc(self, other: Self) -> (Self::Result, i32)
unsafe fn vec_cmpeq_or_0_idx_cc(self, other: Self) -> (Self::Result, i32)
unsafe fn vec_cmpne_or_0_idx_cc(self, other: Self) -> (Self::Result, i32)

impl VectorEqv<vector_bool_char> for vector_bool_char

type Result = vector_bool_char;
unsafe fn vec_eqv(self, b: vector_bool_char) -> Self::Result

impl VectorFindAnyEq<vector_bool_char> for vector_bool_char

type Result = vector_bool_char;
unsafe fn vec_find_any_eq(self, b: Self) -> Self::Result

impl VectorFindAnyEqCC<vector_bool_char> for vector_bool_char

type Result = vector_bool_char;
unsafe fn vec_find_any_eq_cc(self, b: Self) -> (Self::Result, i32)

impl VectorFindAnyEqIdx<vector_bool_char> for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_find_any_eq_idx(self, b: Self) -> Self::Result

impl VectorFindAnyEqIdxCC<vector_bool_char> for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_find_any_eq_idx_cc(self, b: Self) -> (Self::Result, i32)

impl VectorFindAnyEqOrZeroIdx<vector_bool_char> for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_find_any_eq_or_0_idx(self, b: Self) -> Self::Result

impl VectorFindAnyEqOrZeroIdxCC<vector_bool_char> for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_find_any_eq_or_0_idx_cc(self, b: Self) -> (Self::Result, i32)

impl VectorFindAnyNe<vector_bool_char> for vector_bool_char

type Result = vector_bool_char;
unsafe fn vec_find_any_ne(self, b: Self) -> Self::Result

impl VectorFindAnyNeCC<vector_bool_char> for vector_bool_char

type Result = vector_bool_char;
unsafe fn vec_find_any_ne_cc(self, b: Self) -> (Self::Result, i32)

impl VectorFindAnyNeIdx<vector_bool_char> for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_find_any_ne_idx(self, b: Self) -> Self::Result

impl VectorFindAnyNeIdxCC<vector_bool_char> for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_find_any_ne_idx_cc(self, b: Self) -> (Self::Result, i32)

impl VectorFindAnyNeOrZeroIdx<vector_bool_char> for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_find_any_ne_or_0_idx(self, b: Self) -> Self::Result

impl VectorFindAnyNeOrZeroIdxCC<vector_bool_char> for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_find_any_ne_or_0_idx_cc(self, b: Self) -> (Self::Result, i32)

impl VectorNand<vector_bool_char> for vector_bool_char

type Result = vector_bool_char;
unsafe fn vec_nand(self, b: vector_bool_char) -> Self::Result

impl VectorNor<vector_bool_char> for vector_bool_char

type Result = vector_bool_char;
unsafe fn vec_nor(self, b: vector_bool_char) -> Self::Result

impl VectorOr<vector_signed_char> for vector_bool_char

type Result = vector_signed_char;
unsafe fn vec_or(self, b: vector_signed_char) -> Self::Result

impl VectorOr<vector_unsigned_char> for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_or(self, b: vector_unsigned_char) -> Self::Result

impl VectorOrc<vector_bool_char> for vector_bool_char

type Result = vector_bool_char;
unsafe fn vec_orc(self, b: vector_bool_char) -> Self::Result

impl VectorPerm for vector_bool_char

unsafe fn vec_perm(self, other: Self, c: vector_unsigned_char) -> Self

impl VectorReve for vector_bool_char

unsafe fn vec_reve(self) -> Self

impl VectorSearchString for vector_bool_char

unsafe fn vec_search_string_cc(self, b: Self, c: vector_unsigned_char) -> (vector_unsigned_char, i32)
unsafe fn vec_search_string_until_zero_cc(self, b: Self, c: vector_unsigned_char) -> (vector_unsigned_char, i32)

impl VectorSel<vector_bool_char> for vector_bool_char

unsafe fn vec_sel(self, b: Self, c: vector_bool_char) -> Self

impl VectorSel<vector_unsigned_char> for vector_bool_char

unsafe fn vec_sel(self, b: Self, c: vector_unsigned_char) -> Self

impl VectorSld for vector_bool_char

unsafe fn vec_sld<const C: u32>(self, b: Self) -> Self
unsafe fn vec_sldw<const C: u32>(self, b: Self) -> Self
unsafe fn vec_sldb<const C: u32>(self, b: Self) -> Self

impl VectorSplat for vector_bool_char

unsafe fn vec_splat<const IMM: u32>(self) -> Self

impl VectorSrdb for vector_bool_char

unsafe fn vec_srdb<const C: u32>(self, b: Self) -> Self

impl VectorSub<vector_signed_char> for vector_bool_char

type Result = vector_signed_char;
unsafe fn vec_sub(self, other: vector_signed_char) -> Self::Result

impl VectorSub<vector_unsigned_char> for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_sub(self, other: vector_unsigned_char) -> Self::Result

impl VectorUnpackh for vector_bool_char

type Result = vector_bool_short;
unsafe fn vec_unpackh(self) -> Self::Result

impl VectorUnpackl for vector_bool_char

type Result = vector_bool_short;
unsafe fn vec_unpackl(self) -> Self::Result

impl VectorXor<vector_signed_char> for vector_bool_char

type Result = vector_signed_char;
unsafe fn vec_xor(self, b: vector_signed_char) -> Self::Result

impl VectorXor<vector_unsigned_char> for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_xor(self, b: vector_unsigned_char) -> Self::Result

Auto Trait Implementations

impl Freeze for vector_bool_char

impl RefUnwindSafe for vector_bool_char

impl Send for vector_bool_char

impl Sync for vector_bool_char

impl Unpin for vector_bool_char

impl UnsafeUnpin for vector_bool_char

impl UnwindSafe for vector_bool_char

Blanket Implementations

impl<T> Any for vector_bool_char where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for vector_bool_char where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for vector_bool_char where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> CloneToUninit for vector_bool_char where T: Clone,

unsafe fn clone_to_uninit(&self, dest: *mut u8)

impl<T> From<T> for vector_bool_char

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> Printable for vector_bool_char where T: Copy + Debug,

impl<T> SizeHint for vector_bool_char where T: ?Sized,

fn lower_bound(&self) -> usize
fn upper_bound(&self) -> Option<usize>

impl<T> SizedTypeProperties for vector_bool_char

impl<T, U> Into<U> for vector_bool_char where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for vector_bool_char where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for vector_bool_char where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>