Searched refs:out_size (Results 1 - 3 of 3) sorted by relevance
/dovecot/src/lib-compression/ |
H A D | istream-bzlib.c | 54 size_t size, out_size; local 82 if (!i_stream_try_alloc(stream, CHUNK_SIZE, &out_size)) 86 if (!i_stream_try_alloc_avoid_compress(stream, CHUNK_SIZE, &out_size)) 111 zstream->zs.avail_out = out_size; 114 out_size -= zstream->zs.avail_out; 115 stream->pos += out_size; 140 if (out_size == 0) { 148 if (out_size == 0) { 152 return out_size;
|
H A D | istream-lzma.c | 63 size_t size, out_size; local 91 if (!i_stream_try_alloc(stream, CHUNK_SIZE, &out_size)) 95 if (!i_stream_try_alloc_avoid_compress(stream, CHUNK_SIZE, &out_size)) 120 zstream->strm.avail_out = out_size; 123 out_size -= zstream->strm.avail_out; 124 stream->pos += out_size; 149 if (out_size == 0) { 160 if (out_size == 0) { 164 return out_size;
|
H A D | istream-zlib.c | 172 size_t size, out_size; local 245 if (!i_stream_try_alloc(stream, CHUNK_SIZE, &out_size)) 249 if (!i_stream_try_alloc_avoid_compress(stream, CHUNK_SIZE, &out_size)) 274 zstream->zs.avail_out = out_size; 277 out_size -= zstream->zs.avail_out; 280 out_size); 281 stream->pos += out_size; 315 if (out_size == 0) { 319 return out_size;
|
Completed in 9 milliseconds