Home
last modified time | relevance | path

Searched refs:crc16_table (Results 1 – 2 of 2) sorted by relevance

/Linux-v4.19/lib/
Dcrc16.c13 u16 const crc16_table[256] = { variable
47 EXPORT_SYMBOL(crc16_table);
/Linux-v4.19/include/linux/
Dcrc16.h20 extern u16 const crc16_table[256];
26 return (crc >> 8) ^ crc16_table[(crc ^ data) & 0xff]; in crc16_byte()