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

  /system/core/libziparchive/include/ziparchive/
zip_archive.h 95 uint32_t compressed_length; member in struct:ZipEntry
  /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/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...]

Completed in 1766 milliseconds