HomeSort by relevance Sort by last modified time
    Searched refs:compressed_length (Results 1 - 14 of 14) sorted by null

  /system/core/libziparchive/
zip_archive.cc 464 if (entry->compressed_length != descriptor->compressed_size ||
469 entry->compressed_length, entry->uncompressed_length, entry->crc32,
508 data->compressed_length = cdr->compressed_size;
560 if (data->compressed_length != lfh->compressed_size ||
564 data->compressed_length, data->uncompressed_length, data->crc32, lfh->compressed_size,
610 if (static_cast<off64_t>(data_offset + data->compressed_length) > cd_offset) {
612 static_cast<int64_t>(data_offset), data->compressed_length,
913 uint32_t compressed_length = entry->compressed_length; local
917 const size_t getSize = (compressed_length > kBufSize) ? kBufSize : compressed_length
    [all...]
unzip.cpp 208 (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;
zip_writer_test.cc 68 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);
zip_archive_stream_entry.cc 176 compressed_length_ = entry.compressed_length;
269 length_ = entry.compressed_length;
zip_archive_test.cc 279 ASSERT_EQ(static_cast<uint32_t>(13), data.compressed_length);
524 read_data->resize(entry->compressed_length);
  /system/core/libziparchive/include/ziparchive/
zip_archive.h 95 uint32_t compressed_length; member in struct:ZipEntry
  /art/runtime/
zip_archive.cc 113 } else if (zip_entry_->uncompressed_length != zip_entry_->compressed_length) {
119 zip_entry_->compressed_length);
  /frameworks/base/libs/androidfw/
ZipFileRO.cpp 114 *pCompLen = ze.compressed_length;
208 actualLen = ze.compressed_length;
ApkAssets.cpp 101 entry.compressed_length, true /*readOnly*/)) {
  /frameworks/base/core/jni/
android_util_jar_StrictJarFile.cpp 47 static_cast<jlong>(entry.compressed_length),
  /build/make/tools/ijar/
zip.cc 234 size_t compressed_length; member in struct:devtools_ijar::OutputZipFile::LocalFileEntry
787 entry->compressed_length = 0;
811 put_u4le(q, entry->compressed_length); // compressed_size
961 entries_.back()->compressed_length = compressed_size;
    [all...]
  /system/extras/simpleperf/
read_apk.cpp 134 if (zentry.method != kCompressStored || zentry.compressed_length != zentry.uncompressed_length) {
  /bootable/recovery/applypatch/
imgdiff.cpp 583 size_t compressed_len = temp_entries[nextentry].second.compressed_length;
    [all...]
  /system/core/libbacktrace/
BacktraceOffline.cpp 831 if (zentry.method != kCompressStored || zentry.compressed_length != zentry.uncompressed_length) {

Completed in 1485 milliseconds