Home
last modified time | relevance | path

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

/openbmc/u-boot/fs/ext4/
H A Dcrc16.c14 static __u16 const crc16_table[256] = { variable
60 crc16_table[(crc ^ *cp++) & 0xffU]) & 0x0000ffffU; in ext2fs_crc16()
/openbmc/u-boot/fs/ubifs/
H A Dcrc16.h20 extern u16 const crc16_table[256];
26 return (crc >> 8) ^ crc16_table[(crc ^ data) & 0xff]; in crc16_byte()
H A Dcrc16.c12 u16 const crc16_table[256] = { variable
/openbmc/linux/lib/
H A Dcrc16.c11 u16 const crc16_table[256] = { variable
45 EXPORT_SYMBOL(crc16_table);
/openbmc/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()
/openbmc/u-boot/drivers/misc/
H A Datsha204a-i2c.c97 static u16 const crc16_table[256] = { variable
134 u16 t = crc16_table[((crc >> 8) ^ bitreverse_table[data]) & 0xff]; in crc16_byte()