Home
last modified time | relevance | path

Searched refs:CRC32_POLY_BE (Results 1 – 3 of 3) sorted by relevance

/linux/include/linux/
H A Dcrc32poly.h9 #define CRC32_POLY_BE 0x04c11db7 macro
/linux/lib/crc/
H A Dgen_crc32table.c53 crc = (crc << 1) ^ ((crc & 0x80000000) ? CRC32_POLY_BE : 0); in crc32init_be()
/linux/lib/
H A Ddecompress_bunzip2.c659 c = c&0x80000000 ? (c << 1)^(CRC32_POLY_BE) : (c << 1); in start_bunzip()