Searched refs:crctab (Results 1 - 5 of 5) sorted by relevance

/external/kernel-headers/original/uapi/linux/can/
H A Dgw.h121 __u8 crctab[256]; member in struct:cgw_csum_crc8
188 * crc = crctab[ crc ^ can_frame.data[i] ]
/external/fio/crc/
H A Dcrc32.c21 static const uint32_t crctab[256] = { variable
82 crc = (crc << 8) ^ crctab[((crc >> 24) ^ *(cp++)) & 0xFF];
/external/libnfc-nci/src/adaptation/
H A DCrcChecksum.cpp28 static const unsigned short crctab [256] = variable
82 crc = ((crc >> 8) & 0xff) ^ crctab[(crc & 0xff) ^ *cp++];
/external/e2fsprogs/lib/blkid/
H A Dprobe.c1310 static const unsigned int crctab[] = { local
1321 crc = (crc >> 4) ^ crctab[crc & 0xf];
1322 crc = (crc >> 4) ^ crctab[crc & 0xf];
/external/bluetooth/bluedroid/stack/l2cap/
H A Dl2c_fcr.c50 static const unsigned short crctab[256] = { variable
124 crc = ((crc >> 8) & 0xff) ^ crctab[(crc & 0xff) ^ *cp++];

Completed in 357 milliseconds