Struct vector_signed_char
#[repr(simd)]
pub struct vector_signed_char(pub(in ::core_arch::s390x::vector) [i8; 16]);
s390x-specific 128-bit wide vector of sixteen packed i8
Fields
0: [i8; 16]
Implementations
impl vector_signed_char
fn splat(value: i8) -> vector_signed_charPut 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_signed_char
fn clone(&self) -> vector_signed_char
impl Copy for vector_signed_char
impl CountBits for vector_signed_char
type Result = vector_unsigned_char;unsafe fn vec_cntlz(self) -> Self::Resultunsafe fn vec_cnttz(self) -> Self::Resultunsafe fn vec_popcnt(self) -> Self::Result
impl Debug for vector_signed_char
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl From<Simd<i8, 16>> for vector_signed_char
fn from(simd: Simd<i8, 16>) -> Self
impl TrivialClone for vector_signed_char
impl VectorAbs for vector_signed_char
unsafe fn vec_abs(self) -> Self
impl VectorAdd<vector_bool_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_add(self, other: vector_bool_char) -> Self::Result
impl VectorAdd<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_add(self, other: vector_signed_char) -> Self::Result
impl VectorAnd<vector_bool_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_and(self, b: vector_bool_char) -> Self::Result
impl VectorAnd<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_and(self, b: vector_signed_char) -> Self::Result
impl VectorAndc<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_andc(self, b: vector_signed_char) -> Self::Result
impl VectorAvg<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_avg(self, b: vector_signed_char) -> Self::Result
impl VectorCompare for vector_signed_char
unsafe fn vec_all_lt(self, other: Self) -> i32unsafe fn vec_all_le(self, other: Self) -> i32unsafe fn vec_all_gt(self, other: Self) -> i32unsafe fn vec_all_ge(self, other: Self) -> i32
impl VectorComparePredicate for vector_signed_char
type Result = vector_bool_char;
impl VectorCopyUntilZero for vector_signed_char
unsafe fn vec_cp_until_zero(self) -> Self
impl VectorCopyUntilZeroCC for vector_signed_char
unsafe fn vec_cp_until_zero_cc(self) -> (Self, i32)
impl VectorEquality for vector_signed_char
type Result = vector_bool_char;
impl VectorEqualityIdx for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_cmpeq_idx(self, other: Self) -> Self::Resultunsafe fn vec_cmpne_idx(self, other: Self) -> Self::Resultunsafe fn vec_cmpeq_or_0_idx(self, other: Self) -> Self::Resultunsafe fn vec_cmpne_or_0_idx(self, other: Self) -> Self::Resultunsafe 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_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_eqv(self, b: vector_signed_char) -> Self::Result
impl VectorExtendSigned64 for vector_signed_char
unsafe fn vec_extend_s64(self) -> vector_signed_long_long
impl VectorExtract for vector_signed_char
type ElementType = i8;unsafe fn vec_extract(a: Self, b: i32) -> Self::ElementType
impl VectorFindAnyEq<vector_signed_char> for vector_signed_char
type Result = vector_bool_char;unsafe fn vec_find_any_eq(self, b: Self) -> Self::Result
impl VectorFindAnyEqCC<vector_signed_char> for vector_signed_char
type Result = vector_bool_char;unsafe fn vec_find_any_eq_cc(self, b: Self) -> (Self::Result, i32)
impl VectorFindAnyEqIdx<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_find_any_eq_idx(self, b: Self) -> Self::Result
impl VectorFindAnyEqIdxCC<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_find_any_eq_idx_cc(self, b: Self) -> (Self::Result, i32)
impl VectorFindAnyEqOrZeroIdx<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_find_any_eq_or_0_idx(self, b: Self) -> Self::Result
impl VectorFindAnyEqOrZeroIdxCC<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_find_any_eq_or_0_idx_cc(self, b: Self) -> (Self::Result, i32)
impl VectorFindAnyNe<vector_signed_char> for vector_signed_char
type Result = vector_bool_char;unsafe fn vec_find_any_ne(self, b: Self) -> Self::Result
impl VectorFindAnyNeCC<vector_signed_char> for vector_signed_char
type Result = vector_bool_char;unsafe fn vec_find_any_ne_cc(self, b: Self) -> (Self::Result, i32)
impl VectorFindAnyNeIdx<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_find_any_ne_idx(self, b: Self) -> Self::Result
impl VectorFindAnyNeIdxCC<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_find_any_ne_idx_cc(self, b: Self) -> (Self::Result, i32)
impl VectorFindAnyNeOrZeroIdx<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_find_any_ne_or_0_idx(self, b: Self) -> Self::Result
impl VectorFindAnyNeOrZeroIdxCC<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_find_any_ne_or_0_idx_cc(self, b: Self) -> (Self::Result, i32)
impl VectorInsert for vector_signed_char
type ElementType = i8;unsafe fn vec_insert(a: Self::ElementType, b: Self, c: i32) -> Self
impl VectorInsertAndZero for vector_signed_char
type ElementType = i8;unsafe fn vec_insert_and_zero(a: *const Self::ElementType) -> Self
impl VectorLoad for vector_signed_char
type ElementType = i8;unsafe fn vec_load_len(ptr: *const Self::ElementType, byte_count: u32) -> Selfunsafe fn vec_load_bndry<const BLOCK_BOUNDARY: u16>(ptr: *const Self::ElementType) -> MaybeUninit<Self>
impl VectorMax<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_max(self, other: Self) -> Self
impl VectorMeadd for vector_signed_char
type Result = vector_signed_short;unsafe fn vec_meadd(self, b: vector_signed_char, c: vector_signed_short) -> vector_signed_short
impl VectorMergeh for vector_signed_char
unsafe fn vec_mergeh(self, other: Self) -> Self
impl VectorMergel for vector_signed_char
unsafe fn vec_mergel(self, other: Self) -> Self
impl VectorMhadd for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_mhadd(self, b: vector_signed_char, c: vector_signed_char) -> vector_signed_char
impl VectorMin<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_min(self, other: Self) -> Self
impl VectorMladd for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_mladd(self, b: vector_signed_char, c: vector_signed_char) -> vector_signed_char
impl VectorMoadd for vector_signed_char
type Result = vector_signed_short;unsafe fn vec_moadd(self, b: vector_signed_char, c: vector_signed_short) -> vector_signed_short
impl VectorMul for vector_signed_char
unsafe fn vec_mul(self, other: Self) -> Self
impl VectorMule<vector_signed_short> for vector_signed_char
unsafe fn vec_mule(self, b: vector_signed_char) -> vector_signed_short
impl VectorMulh<vector_signed_char> for vector_signed_char
unsafe fn vec_mulh(self, b: vector_signed_char) -> vector_signed_char
impl VectorMulo<vector_signed_short> for vector_signed_char
unsafe fn vec_mulo(self, b: vector_signed_char) -> vector_signed_short
impl VectorNand<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_nand(self, b: vector_signed_char) -> Self::Result
impl VectorNeg for vector_signed_char
unsafe fn vec_neg(self) -> Self
impl VectorNor<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_nor(self, b: vector_signed_char) -> Self::Result
impl VectorOr<vector_bool_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_or(self, b: vector_bool_char) -> Self::Result
impl VectorOr<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_or(self, b: vector_signed_char) -> Self::Result
impl VectorOrc<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_orc(self, b: vector_signed_char) -> Self::Result
impl VectorPerm for vector_signed_char
unsafe fn vec_perm(self, other: Self, c: vector_unsigned_char) -> Self
impl VectorPromote for vector_signed_char
type ElementType = i8;unsafe fn vec_promote(a: Self::ElementType, c: i32) -> MaybeUninit<Self>
impl VectorRevb for vector_signed_char
unsafe fn vec_revb(self) -> Self
impl VectorReve for vector_signed_char
unsafe fn vec_reve(self) -> Self
impl VectorRl<vector_unsigned_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_rl(self, b: vector_unsigned_char) -> Self::Result
impl VectorRlMask<vector_unsigned_char> for vector_signed_char
unsafe fn vec_rl_mask<const IMM8: u8>(self, other: vector_unsigned_char) -> Self
impl VectorRli for vector_signed_char
unsafe fn vec_rli(self, bits: c_ulong) -> Self
impl VectorSearchString for vector_signed_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_signed_char
unsafe fn vec_sel(self, b: Self, c: vector_bool_char) -> Self
impl VectorSel<vector_unsigned_char> for vector_signed_char
unsafe fn vec_sel(self, b: Self, c: vector_unsigned_char) -> Self
impl VectorSl<vector_unsigned_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_sl(self, b: vector_unsigned_char) -> Self::Result
impl VectorSlb<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_slb(self, b: vector_signed_char) -> Self::Result
impl VectorSlb<vector_unsigned_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_slb(self, b: vector_unsigned_char) -> Self::Result
impl VectorSld for vector_signed_char
unsafe fn vec_sld<const C: u32>(self, b: Self) -> Selfunsafe fn vec_sldw<const C: u32>(self, b: Self) -> Selfunsafe fn vec_sldb<const C: u32>(self, b: Self) -> Self
impl VectorSll<vector_unsigned_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_sll(self, b: vector_unsigned_char) -> Self::Result
impl VectorSplat for vector_signed_char
unsafe fn vec_splat<const IMM: u32>(self) -> Self
impl VectorSr<vector_unsigned_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_sr(self, b: vector_unsigned_char) -> Self::Result
impl VectorSra<vector_unsigned_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_sra(self, b: vector_unsigned_char) -> Self::Result
impl VectorSrab<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_srab(self, b: vector_signed_char) -> Self::Result
impl VectorSrab<vector_unsigned_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_srab(self, b: vector_unsigned_char) -> Self::Result
impl VectorSral<vector_unsigned_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_sral(self, b: vector_unsigned_char) -> Self::Result
impl VectorSrb<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_srb(self, b: vector_signed_char) -> Self::Result
impl VectorSrb<vector_unsigned_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_srb(self, b: vector_unsigned_char) -> Self::Result
impl VectorSrdb for vector_signed_char
unsafe fn vec_srdb<const C: u32>(self, b: Self) -> Self
impl VectorSrl<vector_unsigned_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_srl(self, b: vector_unsigned_char) -> Self::Result
impl VectorStore for vector_signed_char
type ElementType = i8;unsafe fn vec_store_len(self, ptr: *mut Self::ElementType, byte_count: u32)
impl VectorSub<vector_bool_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_sub(self, other: vector_bool_char) -> Self::Result
impl VectorSub<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_sub(self, other: vector_signed_char) -> Self::Result
impl VectorUnpackh for vector_signed_char
type Result = vector_signed_short;unsafe fn vec_unpackh(self) -> Self::Result
impl VectorUnpackl for vector_signed_char
type Result = vector_signed_short;unsafe fn vec_unpackl(self) -> Self::Result
impl VectorXor<vector_bool_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_xor(self, b: vector_bool_char) -> Self::Result
impl VectorXor<vector_signed_char> for vector_signed_char
type Result = vector_signed_char;unsafe fn vec_xor(self, b: vector_signed_char) -> Self::Result
Auto Trait Implementations
impl Freeze for vector_signed_char
impl RefUnwindSafe for vector_signed_char
impl Send for vector_signed_char
impl Sync for vector_signed_char
impl Unpin for vector_signed_char
impl UnsafeUnpin for vector_signed_char
impl UnwindSafe for vector_signed_char
Blanket Implementations
impl<T> Any for vector_signed_char
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for vector_signed_char
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for vector_signed_char
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for vector_signed_char
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for vector_signed_char
fn from(t: T) -> TReturns the argument unchanged.
impl<T> Printable for vector_signed_char
where
T: Copy + Debug,
impl<T> SizeHint for vector_signed_char
where
T: ?Sized,
fn lower_bound(&self) -> usizefn upper_bound(&self) -> Option<usize>
impl<T> SizedTypeProperties for vector_signed_char
impl<T, U> Into<U> for vector_signed_char
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for vector_signed_char
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for vector_signed_char
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>