Searched refs:avail_out (Results 1 - 25 of 114) sorted by relevance

12345

/macosx-10.10.1/zlib-55/zlib/examples/
H A Dfitblk.c88 } while (def->avail_out != 0 && flush == Z_NO_FLUSH);
104 inf->avail_out = RAWLEN;
113 def->avail_in = RAWLEN - inf->avail_out;
115 if (inf->avail_out != 0)
119 } while (ret != Z_STREAM_END && def->avail_out != 0);
156 def.avail_out = size + EXCESS;
163 if (ret == Z_STREAM_END && def.avail_out >= EXCESS) {
165 have = size + EXCESS - def.avail_out;
195 def.avail_out = size + EXCESS;
210 def.avail_out
[all...]
H A Dzpipe.c65 strm.avail_out = CHUNK;
69 have = CHUNK - strm.avail_out;
74 } while (strm.avail_out == 0);
123 strm.avail_out = CHUNK;
135 have = CHUNK - strm.avail_out;
140 } while (strm.avail_out == 0);
H A Dzran.c164 strm.avail_out = 0;
181 if (strm.avail_out == 0) {
182 strm.avail_out = WINSIZE;
189 totout += strm.avail_out;
192 totout -= strm.avail_out;
212 totout, strm.avail_out, window);
292 strm.avail_out = len;
297 strm.avail_out = WINSIZE;
302 strm.avail_out = (unsigned)offset;
307 /* uncompress until avail_out fille
[all...]
/macosx-10.10.1/OpenSSH-189/openssh/
H A Dcompress.c103 /* Loop compressing until deflate() returns with avail_out != 0. */
107 outgoing_stream.avail_out = sizeof(buf);
115 sizeof(buf) - outgoing_stream.avail_out);
122 } while (outgoing_stream.avail_out == 0);
146 incoming_stream.avail_out = sizeof(buf);
152 sizeof(buf) - incoming_stream.avail_out);
/macosx-10.10.1/sudo-73/src/zlib/
H A Duncompr.c39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
H A Dcompress.c39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
/macosx-10.10.1/zlib-55/zlib/
H A Duncompr.c39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
H A Dcompress.c39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
/macosx-10.10.1/file_cmds-242/gzip/
H A Dunxz.c66 strm.avail_out = 0;
72 strm.avail_out = sizeof(obuf);
96 if (strm.avail_out == 0 || ret != LZMA_OK) {
97 const size_t write_size = sizeof(obuf) - strm.avail_out;
103 strm.avail_out = sizeof(obuf);
H A Dunbzip2.c83 bzs.avail_out = BUFLEN;
101 if (!tflag && bzs.avail_out != BUFLEN) {
104 n = write(out, outbuf, BUFLEN - bzs.avail_out);
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DCompression.cpp76 stream.avail_out = currentCapacity - currentOffset;
82 if (deflateResult == Z_OK || !stream.avail_out) {
84 currentCapacity -= stream.avail_out;
101 currentOffset = currentCapacity - stream.avail_out;
103 stream.avail_out = newCapacity - currentCapacity;
139 stream.avail_out = bufferSize;
/macosx-10.10.1/cups-408/cups/examples/
H A Dppdx.c100 decomp.avail_out = 256;
128 // printf("Before inflate: avail_in=%d, avail_out=%d\n", decomp.avail_in,
129 // decomp.avail_out);
137 // printf("After inflate: avail_in=%d, avail_out=%d, error=%d\n",
138 // decomp.avail_in, decomp.avail_out, error);
140 if (decomp.avail_out == 0)
156 decomp.avail_out = temp_size - alloc_size;
240 comp.avail_out = sizeof(buffer);
252 len = sizeof(buffer) - comp.avail_out;
279 while (comp.avail_out
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/generic/
H A Dbz2.c316 c->state.avail_out = OUT_SIZE;
327 if (c->state.avail_out < OUT_SIZE) {
329 OUT_SIZE - c->state.avail_out, interp);
338 if ((c->state.avail_out == 0) && (res == BZ_OK))
385 c->state.avail_out = OUT_SIZE;
396 if (c->state.avail_out < OUT_SIZE) {
398 OUT_SIZE - c->state.avail_out, interp);
407 if ((c->state.avail_out == 0) && (res == BZ_OK))
452 c->state.avail_out = OUT_SIZE;
463 if (c->state.avail_out < OUT_SIZ
[all...]
H A Dzip.c369 c->state.avail_out = OUT_SIZE;
384 if (c->state.avail_out < OUT_SIZE) {
386 OUT_SIZE - c->state.avail_out, interp);
396 if ((c->state.avail_out == 0) && (res == Z_OK))
455 c->state.avail_out = OUT_SIZE;
470 if (c->state.avail_out < OUT_SIZE) {
472 OUT_SIZE - c->state.avail_out, interp);
482 if ((c->state.avail_out == 0) && (res == Z_OK))
531 c->state.avail_out = OUT_SIZE;
546 if (c->state.avail_out < OUT_SIZ
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/comp/
H A Dc_zlib.c154 state->istream.avail_out = 0;
166 state->ostream.avail_out = 0;
205 state->ostream.avail_out = olen;
212 ilen,olen - state->ostream.avail_out,
213 (ilen != olen - state->ostream.avail_out)?"zlib":"clear");
215 return olen - state->ostream.avail_out;
233 state->istream.avail_out = olen;
240 ilen,olen - state->istream.avail_out,
241 (ilen != olen - state->istream.avail_out)?"zlib":"clear");
243 return olen - state->istream.avail_out;
[all...]
/macosx-10.10.1/rsync-45/rsync/zlib/
H A Dcompress.c39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
/macosx-10.10.1/xar-254/xar/lib/
H A Dbzxar.c119 BZIP2_CONTEXT(context)->bz.avail_out = 0;
127 BZIP2_CONTEXT(context)->bz.avail_out = outlen - offset;
137 offset += outlen - offset - BZIP2_CONTEXT(context)->bz.avail_out;
226 BZIP2_CONTEXT(context)->bz.avail_out = 0;
235 BZIP2_CONTEXT(context)->bz.avail_out = outlen - offset;
238 offset = outlen - BZIP2_CONTEXT(context)->bz.avail_out;
247 BZIP2_CONTEXT(context)->bz.avail_out = outlen - offset;
250 offset = outlen - BZIP2_CONTEXT(context)->bz.avail_out;
H A Dzxar.c109 GZIP_CONTEXT(context)->z.avail_out = 0;
117 GZIP_CONTEXT(context)->z.avail_out = outlen - offset;
127 offset += outlen - offset - GZIP_CONTEXT(context)->z.avail_out;
203 GZIP_CONTEXT(context)->z.avail_out = 0;
212 GZIP_CONTEXT(context)->z.avail_out = outlen - offset;
215 offset = outlen - GZIP_CONTEXT(context)->z.avail_out;
224 GZIP_CONTEXT(context)->z.avail_out = outlen - offset;
227 offset = outlen - GZIP_CONTEXT(context)->z.avail_out;
H A Dlzmaxar.c142 LZMA_CONTEXT(context)->lzma.avail_out = 0;
150 LZMA_CONTEXT(context)->lzma.avail_out = outlen - offset;
161 offset += outlen - offset - LZMA_CONTEXT(context)->lzma.avail_out;
292 LZMA_CONTEXT(context)->lzma.avail_out = 0;
301 LZMA_CONTEXT(context)->lzma.avail_out = outlen - offset;
304 offset = outlen - LZMA_CONTEXT(context)->lzma.avail_out;
313 LZMA_CONTEXT(context)->lzma.avail_out = outlen - offset;
316 offset = outlen - LZMA_CONTEXT(context)->lzma.avail_out;
/macosx-10.10.1/xnu-2782.1.97/libkern/zlib/
H A Dcompress.c70 stream.avail_out = (uInt)*destLen;
71 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
H A Duncompr.c72 stream.avail_out = (uInt)*destLen;
73 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
H A Dgzio.c143 s->stream.avail_in = s->stream.avail_out = 0;
205 s->stream.avail_out = Z_BUFSIZE;
271 if (s->stream.avail_out == 0) {
277 s->stream.avail_out = Z_BUFSIZE;
437 s->stream.avail_out = len;
439 if (s->stream.avail_out && s->back != EOF) {
442 s->stream.avail_out--;
452 while (s->stream.avail_out != 0) {
457 if (n > s->stream.avail_out) n = s->stream.avail_out;
[all...]
/macosx-10.10.1/rsync-45/rsync/
H A Dtoken.c140 * call, avail_out must be at least 0.1% larger than avail_in plus 12 bytes.
219 tx_strm.avail_out = 0;
230 if (tx_strm.avail_out == 0) {
232 tx_strm.avail_out = MAX_DATA_COUNT;
242 tx_strm.avail_out -= 4;
252 if (nb == 0 || tx_strm.avail_out == 0) {
253 n = MAX_DATA_COUNT - tx_strm.avail_out;
268 } while (nb != 0 || tx_strm.avail_out == 0);
286 tx_strm.avail_out = AVAIL_OUT_SIZE(CHUNK_SIZE);
358 rx_strm.avail_out
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/libtiff/
H A Dtif_zip.c140 sp->stream.avail_out = occ;
158 } while (sp->stream.avail_out > 0);
159 if (sp->stream.avail_out != 0) {
162 tif->tif_name, tif->tif_row, sp->stream.avail_out);
203 sp->stream.avail_out = tif->tif_rawdatasize;
228 if (sp->stream.avail_out == 0) {
232 sp->stream.avail_out = tif->tif_rawdatasize;
255 if ((int)sp->stream.avail_out != (int)tif->tif_rawdatasize)
258 tif->tif_rawdatasize - sp->stream.avail_out;
261 sp->stream.avail_out
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/tiff/
H A DtiffZip.c130 sp->stream.avail_out = occ;
148 } while (sp->stream.avail_out > 0);
149 if (sp->stream.avail_out != 0) {
152 tif->tif_name, tif->tif_row, sp->stream.avail_out);
187 sp->stream.avail_out = tif->tif_rawdatasize;
213 if (sp->stream.avail_out == 0) {
217 sp->stream.avail_out = tif->tif_rawdatasize;
241 if ((int) sp->stream.avail_out != tif->tif_rawdatasize) {
243 tif->tif_rawdatasize - sp->stream.avail_out;
246 sp->stream.avail_out
[all...]

Completed in 160 milliseconds

12345