Searched refs:polynomial (Results 1 – 4 of 4) sorted by relevance
30 void crc8_populate_msb(u8 table[CRC8_TABLE_SIZE], u8 polynomial) in crc8_populate_msb() argument39 t = (t << 1) ^ (t & msbit ? polynomial : 0); in crc8_populate_msb()52 void crc8_populate_lsb(u8 table[CRC8_TABLE_SIZE], u8 polynomial) in crc8_populate_lsb() argument60 t = (t >> 1) ^ (t & 1 ? polynomial : 0); in crc8_populate_lsb()
18 static void crc32init_le_generic(const uint32_t polynomial, uint32_t tab[256]) in crc32init_le_generic() argument26 crc = (crc >> 1) ^ ((crc & 1) ? polynomial : 0); in crc32init_le_generic()
79 long polynomial_calc(const struct polynomial *poly, long data) in polynomial_calc()
248 obj-$(CONFIG_POLYNOMIAL) += polynomial.o
Completed in 5 milliseconds