Home
last modified time | relevance | path

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

/Linux-v4.19/lib/
Dcrc-ccitt.c58 u16 const crc_ccitt_false_table[256] = { variable
92 EXPORT_SYMBOL(crc_ccitt_false_table);
/Linux-v4.19/include/linux/
Dcrc-ccitt.h8 extern u16 const crc_ccitt_false_table[256];
20 return (crc << 8) ^ crc_ccitt_false_table[(crc >> 8) ^ c]; in crc_ccitt_false_byte()