char in_stream;
unsigned char *out_block;
size_t out_block_size;
- int64_t total_out;
unsigned long crc;
uint32_t mtime;
char *name;
/* We've read as much as we can. */
decompressed = state->stream.next_out - state->out_block;
- state->total_out += decompressed;
if (decompressed == 0)
*p = NULL;
else
struct read_lzop {
unsigned char *out_block;
size_t out_block_size;
- int64_t total_out;
int flags;
uint32_t compressed_cksum;
uint32_t uncompressed_cksum;
*/
if (state->uncompressed_size == state->compressed_size) {
*p = b;
- state->total_out += state->compressed_size;
state->unconsumed_bytes = state->compressed_size;
return ((ssize_t)state->uncompressed_size);
}
__archive_read_filter_consume(self->upstream, state->compressed_size);
*p = state->out_block;
- state->total_out += out_size;
return ((ssize_t)out_size);
}
lzma_stream stream;
unsigned char *out_block;
size_t out_block_size;
- int64_t total_out;
char eof; /* True = found end of compressed data. */
char in_stream;
}
decompressed = state->stream.next_out - state->out_block;
- state->total_out += decompressed;
state->member_out += decompressed;
if (decompressed == 0) {
if (member_in != state->member_in &&
ZSTD_DStream *dstream;
unsigned char *out_block;
size_t out_block_size;
- int64_t total_out;
char in_frame; /* True = in the middle of a zstd frame. */
char eof; /* True = found end of compressed data. */
};
}
decompressed = out.pos;
- state->total_out += decompressed;
if (decompressed == 0)
*p = NULL;
else