[][src]Function safe_arch::crc32_u16

#[must_use]pub fn crc32_u16(crc: u32, v: u16) -> u32
This is supported with target feature sse4.2 only.

Accumulates the u16 into a running CRC32 value.

assert_eq!(crc32_u16(u32::MAX, u16::MAX), 65535_u32);