/external/vboot_reference/firmware/lib/cgptlib/include/ |
crc32.h | 10 uint32_t Crc32(const void *buffer, uint32_t len);
|
/external/lzma/CPP/Common/ |
CrcReg.cpp | 109 static CHasherInfo g_HasherInfo = { CreateHasher, 0x1, L"CRC32", 4 };
111 REGISTER_HASHER(Crc32)
|
/device/google/contexthub/util/nanotool/ |
nanopacket.cpp | 43 // Computes the CRC32 of a buffer given a starting CRC. 44 uint32_t Crc32(const uint8_t *buffer, int length) { 48 // Word by word crc32 104 uint32_t crc = Crc32(packet_buffer_.data(), required_buffer_size - 4); 197 uint32_t computed_crc = Crc32(packet_buffer_.data(), crc_length);
|
/external/vboot_reference/tests/ |
crc32_test.c | 8 #include "crc32.h" 18 uint32_t crc32; member in struct:__anon27292 42 uint32_t crc32; local 44 crc32 = Crc32(cases[i].vector, cases[i].len); 45 EXPECT(crc32 == cases[i].crc32);
|
vboot_audio_tests.c | 13 #include "crc32.h" 56 hdr->checksum = Crc32(&(hdr->count), sizeof(hdr->count) +
|
cgptlib_test.c | 12 #include "crc32.h" 68 * Given a GptData pointer, first re-calculate entries CRC32 value, then reset 69 * header CRC32 value to 0, and calculate header CRC32 value. Both primary and 83 Crc32((uint8_t *)entries, 86 header->header_crc32 = Crc32((uint8_t *)header, header->size); 88 Crc32((uint8_t *)entries2, 91 header2->header_crc32 = Crc32((uint8_t *)header2, header2->size); [all...] |
/external/libchrome/base/metrics/ |
bucket_ranges.cc | 77 static uint32_t Crc32(uint32_t sum, HistogramBase::Sample value) { 123 checksum = Crc32(checksum, ranges_[index]);
|
/external/vboot_reference/firmware/lib/cgptlib/ |
cgptlib_internal.c | 10 #include "crc32.h" 55 uint32_t crc32, original_crc32; local 60 crc32 = Crc32((const uint8_t *)h, h->size); 63 return crc32; 164 uint32_t crc32; local 168 crc32 = Crc32((const uint8_t *)entries, 170 if (crc32 != h->entries_crc32) 417 header->entries_crc32 = Crc32(gpt->primary_entries [all...] |
crc32.c | 0 /* CRC32 implementation by Gary S. Brown. See license claim below. */ 44 #include "crc32.h" 102 uint32_t Crc32(const void *buffer, uint32_t len)
|
/external/vboot_reference/cgpt/ |
cgpt_common.c | 29 #include "crc32.h" 829 Crc32(gpt->primary_entries, entries_size); 835 Crc32(gpt->secondary_entries, entries_size); 839 primary_header->header_crc32 = Crc32( 844 secondary_header->header_crc32 = Crc32( 926 * If both headers are valid (CRC32 is correct) but 931 * If primary is invalid (CRC32 is wrong), then we repair it from secondary. 932 * If secondary is invalid (CRC32 is wrong), then we repair it from primary. [all...] |
cgpt_show.c | 11 #include "crc32.h" 93 Crc32((const uint8_t *)entries,header->size_of_entry *
|
/external/vboot_reference/firmware/lib/ |
vboot_audio.c | 10 #include "crc32.h" 123 mysum = Crc32(&(hdr->count), mylen);
|
/prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.0.CR3/ |
netty-codec-4.1.0.CR3.jar | |