Function curve25519_dalek::backend::vector::avx2::field::repack_pair [−][src]
fn repack_pair(x: u32x8, y: u32x8) -> u32x8
This is supported on crate feature
simd_backend
and (target features avx2
or avx512ifma
) and target feature avx2
and non-target feature avx512ifma
only.Expand description
Repack 64-bit lanes into 32-bit lanes:
(a0, 0, b0, 0, c0, 0, d0, 0)
(a1, 0, b1, 0, c1, 0, d1, 0)
into
(a0, b0, a1, b1, c0, d0, c1, d1)