Lines Matching full:crc
29 u32 Crc = static_cast<u32>(CRC32_INTRINSIC(Seed, Value));
31 Crc = static_cast<u32>(CRC32_INTRINSIC(Crc, Array[I]));
32 return static_cast<u16>(Crc ^ (Crc >> 16));
35 u32 Crc = computeHardwareCRC32(Seed, Value);
37 Crc = computeHardwareCRC32(Crc, Array[I]);
38 return static_cast<u16>(Crc ^ (Crc >> 16));
101 // We do not need a cryptographically strong hash for the checksum, but a CRC