Home
last modified time | relevance | path

Searched defs:crc (Results 1 – 14 of 14) sorted by relevance

/hal_espressif-latest/components/esp_hw_support/include/
Desp_crc.h25 static inline uint32_t esp_crc32_le(uint32_t crc, uint8_t const *buf, uint32_t len) in esp_crc32_le()
38 static inline uint32_t esp_crc32_be(uint32_t crc, uint8_t const *buf, uint32_t len) in esp_crc32_be()
51 static inline uint16_t esp_crc16_le(uint16_t crc, uint8_t const *buf, uint32_t len) in esp_crc16_le()
64 static inline uint16_t esp_crc16_be(uint16_t crc, uint8_t const *buf, uint32_t len) in esp_crc16_be()
77 static inline uint8_t esp_crc8_le(uint8_t crc, uint8_t const *buf, uint32_t len) in esp_crc8_le()
90 static inline uint8_t esp_crc8_be(uint8_t crc, uint8_t const *buf, uint32_t len) in esp_crc8_be()
/hal_espressif-latest/components/esp_rom/linux/
Desp_rom_crc.c166 uint32_t esp_rom_crc32_le(uint32_t crc, uint8_t const * buf,uint32_t len) in esp_rom_crc32_le()
176 uint32_t esp_rom_crc32_be(uint32_t crc, uint8_t const * buf,uint32_t len) in esp_rom_crc32_be()
186 uint16_t esp_rom_crc16_le(uint16_t crc, uint8_t const * buf, uint32_t len) in esp_rom_crc16_le()
197 uint16_t esp_rom_crc16_be(uint16_t crc, uint8_t const * buf,uint32_t len) in esp_rom_crc16_be()
207 uint8_t esp_rom_crc8_le(uint8_t crc, uint8_t const * buf, uint32_t len) in esp_rom_crc8_le()
218 uint8_t esp_rom_crc8_be(uint8_t crc, uint8_t const * buf,uint32_t len) in esp_rom_crc8_be()
Desp_rom_efuse.c12 unsigned char crc = 0; in esp_crc8() local
/hal_espressif-latest/components/esp_rom/patches/
Desp_rom_crc.c92 uint8_t esp_rom_crc8_be(uint8_t crc, uint8_t const *buf, uint32_t len) in esp_rom_crc8_be()
102 uint16_t esp_rom_crc16_be(uint16_t crc, uint8_t const *buf, uint32_t len) in esp_rom_crc16_be()
112 uint32_t esp_rom_crc32_be(uint32_t crc, uint8_t const *buf, uint32_t len) in esp_rom_crc32_be()
200 uint8_t esp_rom_crc8_le(uint8_t crc, uint8_t const *buf, uint32_t len) in esp_rom_crc8_le()
210 uint16_t esp_rom_crc16_le(uint16_t crc, uint8_t const *buf, uint32_t len) in esp_rom_crc16_le()
220 uint32_t esp_rom_crc32_le(uint32_t crc, uint8_t const *buf, uint32_t len) in esp_rom_crc32_le()
/hal_espressif-latest/components/bt/host/bluedroid/external/sbc/decoder/srce/
Dframing.c115 OI_UINT crc; in crc_iterate() local
130 OI_UINT crc; in crc_iterate_top4() local
151 static INLINE OI_UINT8 crc_iterate(OI_UINT8 crc, OI_UINT8 next) in crc_iterate()
160 static INLINE OI_UINT8 crc_iterate(OI_UINT8 crc, OI_UINT8 next) in crc_iterate()
173 OI_UINT8 crc = 0x0f; in OI_SBC_CalculateChecksum() local
Ddecoder-sbc.c247 OI_UINT8 crc; in OI_CODEC_SBC_DecodeFrame() local
344 OI_UINT8 crc; in OI_CODEC_SBC_SkipFrame() local
/hal_espressif-latest/components/spi_flash/sim/stubs/esp32/
Dcrc.cpp50 extern "C" unsigned int crc32_le(unsigned int crc, unsigned char const * buf,unsigned int len) in crc32_le()
/hal_espressif-latest/components/wpa_supplicant/src/crypto/
Dcrypto_ops.c50 static uint32_t esp_supp_crc32(uint32_t crc, uint8_t const *buf, uint32_t len) in esp_supp_crc32()
/hal_espressif-latest/components/bootloader_support/include/
Desp_flash_partitions.h67 uint32_t crc; /* CRC32 of ota_seq field only */ member
Desp_image_format.h62 uint32_t crc; /*!< Check sum crc32 */ member
/hal_espressif-latest/components/driver/spi/sdspi/
Dsdspi_host.c776 uint16_t crc = UINT16_MAX; in start_command_read_blocks() local
898 uint16_t crc = sdspi_crc16(data, will_send); in start_command_write_blocks() local
/hal_espressif-latest/components/bt/host/bluedroid/external/sbc/decoder/include/
Doi_codec_sbc.h147 OI_UINT8 crc; /**< Parity check byte used for error detection. */ member
/hal_espressif-latest/components/bt/host/bluedroid/stack/l2cap/
Dl2c_fcr.c113 register unsigned short crc = icrc; in l2c_fcr_updcrc() local
/hal_espressif-latest/tools/esptool_py/flasher_stub/
Dminiz.c88 mz_ulong mz_crc32(mz_ulong crc, const mz_uint8 *ptr, size_t buf_len) in mz_crc32()