Home
last modified time | relevance | path

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

/openbmc/qemu/include/qemu/
H A Dcrc-ccitt.h18 extern uint16_t const crc_ccitt_false_table[256];
30 return (crc << 8) ^ crc_ccitt_false_table[(crc >> 8) ^ c]; in crc_ccitt_false_byte()
/openbmc/linux/include/linux/
H A 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()
/openbmc/linux/lib/
H A Dcrc-ccitt.c56 u16 const crc_ccitt_false_table[256] = { variable
90 EXPORT_SYMBOL(crc_ccitt_false_table);
/openbmc/qemu/util/
H A Dcrc-ccitt.c62 uint16_t const crc_ccitt_false_table[256] = { variable