_mm_crc32_u8
Visual Studio 2010
Microsoft Specific
Emits the Streaming SIMD Extensions 4 (SSE4) instruction crc32. This instruction adds one parameter to the CRC-32C checksum of the other parameter.
unsigned int _mm_crc32_u8 ( unsigned int crc, unsigned char v );
CRC32-C algorithm is based on polynomial 0x1EDC6F41. It is implemented by following little-endian convention. This means that the most significant bit is treated as the least significant bit in the quotient.
Before using this intrinsic, software must ensure that the processor supports this instruction.