Home
last modified time | relevance | path

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

/system/chre/chpp/platform/shared/
Dcrc.c26 static const uint32_t crc32LookupTable[] = { in chppCrc32() local
33 crc = crc32LookupTable[(crc ^ buf[i]) & 0x0F] ^ (crc >> 4); in chppCrc32()
34 crc = crc32LookupTable[(crc ^ (buf[i] >> 4)) & 0x0F] ^ (crc >> 4); in chppCrc32()