Searched refs:crc8_narrow (Results 1 – 1 of 1) sorted by relevance
71 const OI_BYTE crc8_narrow[16] = {0x00, 0x1d, 0x3a, 0x27, 0x74, 0x69, variable75 const OI_BYTE crc8_narrow[256] = { variable187 return (oldcrc << 4) ^ crc8_narrow[(oldcrc ^ next) >> 4]; in crc_iterate_top4()192 crc = (crc << 4) ^ crc8_narrow[(crc ^ next) >> 4]; in crc_iterate()193 crc = (crc << 4) ^ crc8_narrow[((crc >> 4) ^ next) & 0xf]; in crc_iterate()200 return crc8_narrow[crc ^ next]; in crc_iterate()