Home | History | Annotate | Download | only in libziparchive

Lines Matching defs:remaining_bytes

946   uint32_t remaining_bytes = compressed_length;
950 const size_t read_size = (remaining_bytes > kBufSize) ? kBufSize : remaining_bytes;
951 const uint32_t offset = (compressed_length - remaining_bytes);
958 remaining_bytes -= read_size;
998 if (zstream.total_out != uncompressed_length || remaining_bytes != 0) {