Searched refs:polynomial (Results 1 – 1 of 1) sorted by relevance
24 uint32_t polynomial = endian ? 0x04c11db7 : 0xedb88320; in crc32_filltable() local35 c = (c&0x80000000) ? ((c << 1) ^ polynomial) : (c << 1); in crc32_filltable()37 c = (c&1) ? ((c >> 1) ^ polynomial) : (c >> 1); in crc32_filltable()