Searched refs:crc8_narrow (Results 1 – 1 of 1) sorted by relevance
57 const OI_BYTE crc8_narrow[16] = { variable61 const OI_BYTE crc8_narrow[256] = { variable145 return (oldcrc << 4) ^ crc8_narrow[(oldcrc^next) >> 4]; in crc_iterate_top4()151 crc = (crc << 4) ^ crc8_narrow[(crc^next) >> 4]; in crc_iterate()152 crc = (crc << 4) ^ crc8_narrow[((crc>>4)^next)&0xf]; in crc_iterate()160 return crc8_narrow[crc^next]; in crc_iterate()