Searched refs:compressed_length (Results 1 - 7 of 7) sorted by relevance

/system/core/libziparchive/include/ziparchive/
H A Dzip_archive.h95 uint32_t compressed_length; member in struct:ZipEntry
262 * Inflates the first |compressed_length| bytes of |reader| to a given |writer|.
272 int32_t Inflate(const Reader& reader, const uint32_t compressed_length,
/system/core/libziparchive/
H A Dzip_archive.cc464 offset += entry->compressed_length;
479 if (entry->compressed_length != descriptor->compressed_size ||
484 entry->compressed_length, entry->uncompressed_length, entry->crc32,
523 data->compressed_length = cdr->compressed_size;
575 if (data->compressed_length != lfh->compressed_size ||
579 data->compressed_length, data->uncompressed_length, data->crc32, lfh->compressed_size,
625 if (static_cast<off64_t>(data_offset + data->compressed_length) > cd_offset) {
627 static_cast<int64_t>(data_offset), data->compressed_length,
902 int32_t Inflate(const Reader& reader, const uint32_t compressed_length, argument
946 uint32_t remaining_bytes = compressed_length;
[all...]
H A Dunzip.cpp208 (entry.method == kCompressStored) ? "Stored" : "Defl:N", entry.compressed_length,
209 CompressionRatio(entry.uncompressed_length, entry.compressed_length), time, entry.crc32,
229 total_compressed_length += entry.compressed_length;
H A Dzip_writer_test.cc68 EXPECT_EQ(strlen(expected), data.compressed_length);
100 EXPECT_EQ(2u, data.compressed_length);
106 EXPECT_EQ(3u, data.compressed_length);
112 EXPECT_EQ(0u, data.compressed_length);
H A Dzip_archive_stream_entry.cc172 compressed_length_ = entry.compressed_length;
266 length_ = entry.compressed_length;
H A Dzip_archive_test.cc202 ASSERT_EQ(static_cast<uint32_t>(13), data.compressed_length);
447 read_data->resize(entry->compressed_length);
742 const uint32_t compressed_length = kATxtContentsCompressed.size(); local
751 zip_archive::Inflate(reader, compressed_length, uncompressed_length, &writer, &crc_out);
760 zip_archive::Inflate(reader, compressed_length, uncompressed_length, &writer, nullptr);
768 zip_archive::Inflate(reader, compressed_length, uncompressed_length, &writer, nullptr);
776 zip_archive::Inflate(reader, compressed_length, uncompressed_length, &writer, nullptr);
/system/extras/simpleperf/
H A Dread_apk.cpp135 if (zentry.method != kCompressStored || zentry.compressed_length != zentry.uncompressed_length) {

Completed in 279 milliseconds