Home
last modified time | relevance | path

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

/external/fio/crc/
Dcrc16.h18 extern unsigned short const crc16_table[256];
25 return (crc >> 8) ^ crc16_table[(crc ^ data) & 0xff]; in crc16_byte()
Dcrc16.c11 unsigned short const crc16_table[256] = { variable
/external/e2fsprogs/lib/ext2fs/
Dcrc16.c16 static __u16 const crc16_table[256] = { variable
71 crc16_table[(crc ^ *cp++) & 0xffU]) & 0x0000ffffU; in ext2fs_crc16()