Searched refs:poly (Results 1 – 3 of 3) sorted by relevance
111 STATIC INLINE void Chip_CRC_SetPoly(CRC_POLY_T poly, uint32_t flags) in Chip_CRC_SetPoly() argument113 LPC_CRC->MODE = (uint32_t) poly | flags; in Chip_CRC_SetPoly()151 void Chip_CRC_UseDefaultConfig(CRC_POLY_T poly);
63 void Chip_CRC_UseDefaultConfig(CRC_POLY_T poly) in Chip_CRC_UseDefaultConfig() argument65 switch (poly) { in Chip_CRC_UseDefaultConfig()
95 z_crc_t poly; /* polynomial exclusive-or pattern */ in make_crc_table() local107 poly = 0; in make_crc_table()109 poly |= (z_crc_t)1 << (31 - p[n]); in make_crc_table()115 c = c & 1 ? poly ^ (c >> 1) : c >> 1; in make_crc_table()
Completed in 4 milliseconds