Searched refs:polynomial (Results 1 - 4 of 4) sorted by relevance

/osnet-11/usr/src/grub/grub2/grub-core/lib/
H A Dcrc.c44 grub_uint32_t polynomial = 0x1edc6f41; local
52 (crc32c_table[i] & (1 << 31) ? polynomial : 0);
H A Dcrc64.c47 grub_uint64_t polynomial = 0x42f0e1eba9ea3693ULL; local
56 (crc64_table[i] & (1ULL << 63) ? polynomial : 0);
/osnet-11/usr/src/lib/libsum/common/
H A Dsum-crc.c29 [+polynomial?The 32 bit crc polynomial bitmask with implicit bit 32.]:[mask:=0xedb88320]\
125 Crcnum_t polynomial; local
147 polynomial = 0xedb88320;
156 polynomial = strtoul(t, NiL, 0);
177 p[0] = polynomial;
179 p[i] = (p[i-1] << 1) ^ ((p[i-1] & 0x80000000) ? polynomial : 0);
199 x = (x>>1) ^ ((x & 1) ? polynomial : 0);
/osnet-11/usr/src/grub/grub2/grub-core/efiemu/runtime/
H A Defiemu.c309 grub_uint32_t polynomial = 0x04c11db7; local
317 (crc32_table[i] & (1 << 31) ? polynomial : 0);

Completed in 31 milliseconds