• Home
  • Raw
  • Download

Lines Matching refs:compressed_length

676     offset += entry->compressed_length;  in ValidateDataDescriptor()
692 if (entry->compressed_length >= u32max || in ValidateDataDescriptor()
703 if (entry->compressed_length != descriptor.compressed_size || in ValidateDataDescriptor()
708 entry->compressed_length, entry->uncompressed_length, entry->crc32, in ValidateDataDescriptor()
754 data->compressed_length = cdr->compressed_size; in FindEntry()
775 data->compressed_length = zip64_info.compressed_file_size.value_or(cdr->compressed_size); in FindEntry()
896 if (data->compressed_length != lfh_compressed_size || in FindEntry()
900 data->compressed_length, data->uncompressed_length, data->crc32, lfh_compressed_size, in FindEntry()
931 if (data->compressed_length > cd_offset - data_offset) { in FindEntry()
933 static_cast<int64_t>(data_offset), data->compressed_length, in FindEntry()
994 if (src->compressed_length > UINT32_MAX || src->uncompressed_length > UINT32_MAX) { in CopyFromZipEntry64()
998 src->uncompressed_length, src->compressed_length); in CopyFromZipEntry64()
1004 dst->compressed_length = static_cast<uint32_t>(src->compressed_length); in CopyFromZipEntry64()
1259 const uint64_t compressed_length, in inflateImpl() argument
1311 uint64_t remaining_bytes = compressed_length; in inflateImpl()
1318 const off64_t offset = (compressed_length - remaining_bytes); in inflateImpl()
1379 return inflateImpl<true>(reader, entry->compressed_length, in InflateEntryToWriter()
1670 int32_t Inflate(const Reader& reader, const uint64_t compressed_length, in Inflate() argument
1673 return inflateImpl<false>(reader, compressed_length, uncompressed_length, in Inflate()