Searched refs:CRC32_POLY_BE (Results 1 – 3 of 3) sorted by relevance
9 #define CRC32_POLY_BE 0x04c11db7 macro
53 crc = (crc << 1) ^ ((crc & 0x80000000) ? CRC32_POLY_BE : 0); in crc32init_be()
659 c = c&0x80000000 ? (c << 1)^(CRC32_POLY_BE) : (c << 1); in start_bunzip()