Searched refs:CRC32_POLY_BE (Results 1 – 8 of 8) sorted by relevance
11 #define CRC32_POLY_BE 0x04c11db7 macro
334 return crc32_be_generic(crc, p, len, NULL, CRC32_POLY_BE);340 (const u32 (*)[256])crc32table_be, CRC32_POLY_BE);
80 crc = (crc << 1) ^ ((crc & 0x80000000) ? CRC32_POLY_BE : 0); in crc32init_be()
658 c = c&0x80000000 ? (c << 1)^(CRC32_POLY_BE) : (c << 1); in start_bunzip()
1082 static unsigned long const ethernet_polynomial = CRC32_POLY_BE;
137 c = c & 0x80000000 ? (c << 1) ^ CRC32_POLY_BE : (c << 1); in crc32_init()
837 if (high_crc_set ^ low_data_set) cur = cur ^ CRC32_POLY_BE; in crc416()
180 c = c & 0x80000000 ? (c << 1) ^ CRC32_POLY_BE : (c << 1); in crc32_init()