pub unsafe fn _mm_mask_cvtepi8_epi64(
    src: __m128i,
    k: __mmask8,
    a: __m128i
) -> __m128i
🔬This is a nightly-only experimental API. (stdsimd #48556)
Available on (x86 or x86-64) and target feature avx512f,avx512vl and x86-64 only.
Expand description

将 a 的低 2 字节中的 8 位整数符号扩展为包装的 64 位整数,并使用 writemask k 将结果存入 dst 中 (当未设置相应的掩码位时,将从 src 复制元素)。

Intel’s documentation