Home
last modified time | relevance | path

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

/system/bt/gd/l2cap/
Dfcs.cc21 static const uint16_t crctab[256] = { variable
52 crc = ((crc >> 8) & 0x00ff) ^ crctab[(crc & 0x00ff) ^ byte]; in AddByte()
/system/nfc/src/adaptation/
DCrcChecksum.cc31 static const uint16_t crctab[256] = { variable
78 crc = ((crc >> 8) & 0xff) ^ crctab[(crc & 0xff) ^ *cp++]; in crcChecksumCompute()
/system/bt/stack/l2cap/
Dl2c_fcr.cc54 static const unsigned short crctab[256] = { variable
115 crc = ((crc >> 8) & 0xff) ^ crctab[(crc & 0xff) ^ *cp++]; in l2c_fcr_updcrc()