Home
last modified time | relevance | path

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

/linux/lib/
H A Dcrc16.c11 u16 const crc16_table[256] = { variable
45 EXPORT_SYMBOL(crc16_table);
/linux/include/linux/
H A Dcrc16.h18 extern u16 const crc16_table[256];
24 return (crc >> 8) ^ crc16_table[(crc ^ data) & 0xff]; in crc16_byte()