Searched refs:CRC32_POLY_BE (Results 1 – 6 of 6) sorted by relevance
11 #define CRC32_POLY_BE 0x04c11db7 macro
336 return crc32_be_generic(crc, p, len, NULL, CRC32_POLY_BE);341 return crc32_be_generic(crc, p, len, crc32table_be, CRC32_POLY_BE);
80 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()
834 if (high_crc_set ^ low_data_set) cur = cur ^ CRC32_POLY_BE; in crc416()
125 c = c & 0x80000000 ? (c << 1) ^ CRC32_POLY_BE : (c << 1); in crc32_init()