Searched refs:crc_ctx (Results 1 – 3 of 3) sorted by relevance
/AliOS-Things-master/components/ota/ota_agent/verify/ |
A D | ota_verify_hash.c | 110 ota_crc16_ctx crc_ctx = {0}; in ota_check_image_hash() local 143 ota_crc16_init(&crc_ctx); in ota_check_image_hash() 156 ota_crc16_update(&crc_ctx, (void *)rd_buf, read_size); in ota_check_image_hash() 161 ota_crc16_final(&crc_ctx, &crc_result); in ota_check_image_hash()
|
/AliOS-Things-master/components/ota/2ndboot/updater/ |
A D | nbpatch.c | 100 CRC16_CTX crc_ctx; in ota_nbpatch() local 157 crc16_init(&crc_ctx); in ota_nbpatch() 236 crc16_update(&crc_ctx, new_buf + new_pos, ctrl[0]); in ota_nbpatch() 251 crc16_update(&crc_ctx, new_buf + new_pos, ctrl[1]); in ota_nbpatch() 256 crc16_final(&crc_ctx, &patch_crc); in ota_nbpatch()
|
A D | libc.c | 407 CRC16_CTX crc_ctx; in crc16_computer() local 408 crc16_init(&crc_ctx); in crc16_computer() 409 crc16_update(&crc_ctx, buf, len); in crc16_computer() 410 crc16_final(&crc_ctx, &patch_crc); in crc16_computer()
|
Completed in 5 milliseconds