Searched refs:crc_out (Results 1 - 3 of 3) sorted by relevance

/system/core/libziparchive/
H A Dzip_archive.cc903 const uint32_t uncompressed_length, Writer* writer, uint64_t* crc_out) {
944 const bool compute_crc = (crc_out != nullptr);
995 *crc_out = crc;
1009 zip_archive::Writer* writer, uint64_t* crc_out) {
1013 crc_out);
1017 zip_archive::Writer* writer, uint64_t* crc_out) {
1045 *crc_out = crc;
902 Inflate(const Reader& reader, const uint32_t compressed_length, const uint32_t uncompressed_length, Writer* writer, uint64_t* crc_out) argument
1008 InflateEntryToWriter(MappedZipFile& mapped_zip, const ZipEntry* entry, zip_archive::Writer* writer, uint64_t* crc_out) argument
1016 CopyEntryToWriter(MappedZipFile& mapped_zip, const ZipEntry* entry, zip_archive::Writer* writer, uint64_t* crc_out) argument
H A Dzip_archive_test.cc748 uint64_t crc_out = 0; local
751 zip_archive::Inflate(reader, compressed_length, uncompressed_length, &writer, &crc_out);
754 ASSERT_EQ(0x950821C5u, crc_out);
/system/core/libziparchive/include/ziparchive/
H A Dzip_archive.h263 * |crc_out| is set to the CRC32 checksum of the uncompressed data.
269 * If |crc_out| is not nullptr, it is set to the crc32 checksum of the
273 const uint32_t uncompressed_length, Writer* writer, uint64_t* crc_out);

Completed in 96 milliseconds