OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bz_strm_
(Results
1 - 2
of
2
) sorted by null
/external/bsdiff/
bz2_compressor.cc
22
memset(&
bz_strm_
, 0, sizeof(
bz_strm_
));
23
int bz_err = BZ2_bzCompressInit(&
bz_strm_
, kCompressionLevel,
35
int bz_err = BZ2_bzCompressEnd(&
bz_strm_
);
47
bz_strm_
.next_in = reinterpret_cast<char*>(const_cast<uint8_t*>(buf));
48
bz_strm_
.avail_in = size;
50
while (
bz_strm_
.avail_in) {
51
bz_strm_
.next_out = reinterpret_cast<char*>(comp_buffer_.buffer_data());
52
bz_strm_
.avail_out = comp_buffer_.buffer_size();
53
int bz_err = BZ2_bzCompress(&
bz_strm_
, BZ_RUN)
[
all
...]
bz2_compressor.h
36
bz_stream
bz_strm_
;
member in class:bsdiff::BZ2Compressor
38
// Whether the
bz_strm_
is initialized.
Completed in 272 milliseconds