Function core::arch::x86::_mm_blendv_epi81.27.0[][src]

pub unsafe fn _mm_blendv_epi8(a: __m128i, b: __m128i, mask: __m128i) -> __m128i
This is supported on x86 and target feature sse4.1 only.
Expand description

使用 mask 混合 ab 中的包装 8 位整数

每个对应的屏蔽字节的高位确定选择。 如果设置了高位,则选择 a 的元素。否则选择 b 的元素。

Intel’s documentation