Home
last modified time | relevance | path

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

/Zephyr-latest/lib/crc/
Dcrc32c_sw.c10 static const uint32_t crc32c_table[16] = { variable
35 crc = crc32c_table[(crc ^ data[i]) & 0x0F] ^ (crc >> 4); in crc32_c()
36 crc = crc32c_table[(crc ^ ((uint32_t)data[i] >> 4)) & 0x0F] ^ (crc >> 4); in crc32_c()