Searched refs:crc8_narrow (Results 1 – 1 of 1) sorted by relevance
59 const OI_BYTE crc8_narrow[16] = { variable63 const OI_BYTE crc8_narrow[256] = { variable147 return (oldcrc << 4) ^ crc8_narrow[(oldcrc ^ next) >> 4]; in crc_iterate_top4()153 crc = (crc << 4) ^ crc8_narrow[(crc ^ next) >> 4]; in crc_iterate()154 crc = (crc << 4) ^ crc8_narrow[((crc >> 4)^next) & 0xf]; in crc_iterate()162 return crc8_narrow[crc ^ next]; in crc_iterate()