Searched refs:CRC32_POLY (Results 1 – 2 of 2) sorted by relevance
58 #define CRC32_POLY 0x04c11db7 /* AUTODIN II, Ethernet, & FDDI */ macro60 #define CRC32_POLY 0xEDB88320 /* Perl String::CRC32 compatible */
50 c = c & 0x80000000 ? (c << 1) ^ CRC32_POLY : (c << 1); in SDLTest_Crc32Init()59 c = (c >> 1) ^ CRC32_POLY; in SDLTest_Crc32Init()
Completed in 2 milliseconds