Function _mm_blendv_epi8

#[target_feature(enable = "sse4.1")]
pub const fn _mm_blendv_epi8(a: __m128i, b: __m128i, mask: __m128i) -> __m128i

Blend packed 8-bit integers from a and b using mask

The high bit of each corresponding mask byte determines the selection. If the high bit is set, the element of b is selected. Otherwise, the element of a is selected.

Intel's documentation