Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/spi_flash/sim/stubs/esp32/
Dcrc.cpp12 static const unsigned int crc32_le_table[256] = { variable
55 crc = crc32_le_table[(crc^buf[i])&0xff]^(crc>>8); in crc32_le()
/hal_espressif-3.6.0/components/esp_rom/linux/
Desp_rom_crc.c17 static const uint32_t crc32_le_table[256] = { variable
171 crc = crc32_le_table[(crc^buf[i])&0xff]^(crc>>8); in esp_rom_crc32_le()
/hal_espressif-3.6.0/components/esp_rom/patches/
Desp_rom_crc.c164 static const uint32_t crc32_le_table[256] = { variable
225 crc = crc32_le_table[(crc ^ buf[i]) & 0xff] ^ (crc >> 8); in esp_rom_crc32_le()