Searched refs:bzstream (Results 1 – 1 of 1) sorted by relevance
98 bz_stream bzstream; /* BZIP2 */ member219 bz->bzstream.next_out == &bz->out[bz->offset]) { in bzip2_compressed_data_reader()223 if (&bz->out[bz->offset] == bz->bzstream.next_out) { in bzip2_compressed_data_reader()226 bz->bzstream.next_out = (char *) bz->out; in bzip2_compressed_data_reader()227 bz->bzstream.avail_out = sizeof(bz->out); in bzip2_compressed_data_reader()229 if (bz->bzstream.avail_in == 0) { in bzip2_compressed_data_reader()245 bz->bzstream.next_in = bz->in; in bzip2_compressed_data_reader()246 bz->bzstream.avail_in = in bzip2_compressed_data_reader()250 ret = BZ2_bzDecompress(&bz->bzstream); in bzip2_compressed_data_reader()265 if (bz->bzstream.next_out <= &bz->out[bz->offset]) { in bzip2_compressed_data_reader()[all …]