Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/gd/l2cap/
Dfcs.cc21 static const uint16_t crctab[256] = { variable
52 crc = ((crc >> 8) & 0x00ff) ^ crctab[(crc & 0x00ff) ^ byte]; in AddByte()
/packages/modules/Bluetooth/system/stack/l2cap/
Dl2c_fcr.cc53 static const unsigned short crctab[256] = { variable
114 crc = ((crc >> 8) & 0xff) ^ crctab[(crc & 0xff) ^ *cp++]; in l2c_fcr_updcrc()