CRC32_POLY_BE     838 drivers/net/ethernet/apple/bmac.c 		if (high_crc_set ^ low_data_set) cur = cur ^ CRC32_POLY_BE;
CRC32_POLY_BE     774 drivers/net/ethernet/micrel/ks8851_mll.c static unsigned long const ethernet_polynomial = CRC32_POLY_BE;
CRC32_POLY_BE     125 drivers/staging/rtl8712/rtl871x_security.c 			c = c & 0x80000000 ? (c << 1) ^ CRC32_POLY_BE : (c << 1);
CRC32_POLY_BE     180 drivers/staging/rtl8723bs/core/rtw_security.c 				c = c & 0x80000000 ? (c << 1) ^ CRC32_POLY_BE : (c << 1);
CRC32_POLY_BE     337 lib/crc32.c    	return crc32_be_generic(crc, p, len, NULL, CRC32_POLY_BE);
CRC32_POLY_BE     343 lib/crc32.c    			(const u32 (*)[256])crc32table_be, CRC32_POLY_BE);
CRC32_POLY_BE     658 lib/decompress_bunzip2.c 			c = c&0x80000000 ? (c << 1)^(CRC32_POLY_BE) : (c << 1);
CRC32_POLY_BE      80 lib/gen_crc32table.c 		crc = (crc << 1) ^ ((crc & 0x80000000) ? CRC32_POLY_BE : 0);