Home
last modified time | relevance | path

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

/external/e2fsprogs/lib/ext2fs/
Dcrc16.c17 static __u16 const crc16_table[256] = { variable
72 crc16_table[(crc ^ *cp++) & 0xffU]) & 0x0000ffffU; in ext2fs_crc16()
/external/nos/host/generic/libnos_transport/
Dcrc16.c19 static const uint16_t crc16_table[256] = { variable
58 crc = crc16_table[((crc >> 8) ^ *bytes++) & 0xFF] ^ (crc << 8); in crc16_update()