Lines Matching refs:uncompressed_length
678 offset += entry->uncompressed_length; in ValidateDataDescriptor()
693 entry->uncompressed_length >= u32max) { in ValidateDataDescriptor()
704 entry->uncompressed_length != descriptor.uncompressed_size || in ValidateDataDescriptor()
708 entry->compressed_length, entry->uncompressed_length, entry->crc32, in ValidateDataDescriptor()
755 data->uncompressed_length = cdr->uncompressed_size; in FindEntry()
774 data->uncompressed_length = zip64_info.uncompressed_file_size.value_or(cdr->uncompressed_size); in FindEntry()
897 data->uncompressed_length != lfh_uncompressed_size || data->crc32 != lfh->crc32) { in FindEntry()
900 data->compressed_length, data->uncompressed_length, data->crc32, lfh_compressed_size, in FindEntry()
938 if (data->method == kCompressStored && data->uncompressed_length > cd_offset - data_offset) { in FindEntry()
940 static_cast<int64_t>(data_offset), data->uncompressed_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()
1003 dst->uncompressed_length = static_cast<uint32_t>(src->uncompressed_length); in CopyFromZipEntry64()
1101 const uint64_t declared_length = entry->uncompressed_length; in Create()
1143 const uint64_t declared_length = entry->uncompressed_length; in Create()
1260 const uint64_t uncompressed_length, in inflateImpl() argument
1366 if (total_output != uncompressed_length || remaining_bytes != 0) { in inflateImpl()
1368 uncompressed_length); in inflateImpl()
1380 entry->uncompressed_length, writer, crc_out); in InflateEntryToWriter()
1393 const uint64_t length = entry->uncompressed_length; in CopyEntryToWriter()
1671 const uint64_t uncompressed_length, Writer* writer, in Inflate() argument
1673 return inflateImpl<false>(reader, compressed_length, uncompressed_length, in Inflate()