pub fn crc32_u32(crc: u32, v: u32) -> u32
Accumulates the u32 into a running CRC32 value.
u32
assert_eq!(crc32_u32(u32::MAX, u32::MAX), 0_u32);