Function core::arch::mips64::__msa_ave_u_d
source · pub unsafe fn __msa_ave_u_d(a: v2u64, b: v2u64) -> v2u64
🔬This is a nightly-only experimental API. (
stdarch_mips
#111198)Available on (MIPS or MIPS-64) and target feature
msa
and MIPS-64 only.Expand description
Vector Unsigned Average
The elements in vector a
(two unsigned 64-bit integer numbers)
are added to the elements in vector b
(two unsigned 64-bit integer numbers).
The addition is done unsigned with full precision, i.e. the result has one extra bit.
Unsigned division by 2 (or logical shift right by one bit) is performed before
writing the result to vector (two unsigned 64-bit integer numbers).