Home | History | Annotate | Download | only in libziparchive

Lines Matching refs:compressed_length

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;
917 const size_t getSize = (compressed_length > kBufSize) ? kBufSize : compressed_length;
923 compressed_length -= getSize;
962 if (zstream.total_out != uncompressed_length || compressed_length != 0) {