Home
last modified time | relevance | path

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

/rkdeveloptool/
H A Dmain.cpp31 extern unsigned int crc32_le(unsigned int crc, unsigned char *p, unsigned int len);
531 calc_crc32 = crc32_le(0, (unsigned char *)gptBackupHead, le32_to_cpu(gptBackupHead->header_size)); in prepare_gpt_backup()
615 …gptMasterHead->partition_entry_array_crc32 = cpu_to_le32(crc32_le(0, master + 2 * SECTOR_SIZE, GPT… in update_gpt_disksize()
618 gptMasterHead->header_crc32 = cpu_to_le32(crc32_le(0, master + SECTOR_SIZE, sizeof(gpt_header))); in update_gpt_disksize()
718 …gptHead->partition_entry_array_crc32 = cpu_to_le32(crc32_le(0, gpt + 2 * SECTOR_SIZE, GPT_ENTRY_SI… in create_gpt_buffer()
719 gptHead->header_crc32 = cpu_to_le32(crc32_le(0, gpt + SECTOR_SIZE, sizeof(gpt_header))); in create_gpt_buffer()
H A Dcrc.cpp179 unsigned int crc32_le(unsigned int crc, unsigned char *p, unsigned int len) in crc32_le() function