[][src]Function safe_arch::crc32_u32

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

Accumulates the u32 into a running CRC32 value.

assert_eq!(crc32_u32(u32::MAX, u32::MAX), 0_u32);