HomeSort by: relevance | last modified time | path
    Searched defs:avail_in (Results 1 - 25 of 31) sorted by relevancy

1 2

  /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
netpgpv-bzlib.h 53 unsigned int avail_in; member in struct:__anon1082
zlib.h 429 uInt avail_in; /* number of bytes available at next_in */ member in struct:z_stream_s
474 The application must update next_in and avail_in when avail_in has
597 - Compress more input starting at next_in and update next_in and avail_in
599 enough room in the output buffer), next_in and avail_in are updated and
610 more output, and updating avail_in or avail_out accordingly; avail_out
624 avail_in is zero after the call if enough output space has been provided
667 (for example avail_in or avail_out was zero). Note that Z_BUF_ERROR is not
691 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
692 the caller. If next_in is not Z_NULL and avail_in is large enough (the exac
    [all...]
  /src/external/bsd/bzip2/dist/
bzlib.h 53 unsigned int avail_in; member in struct:__anon6528
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_support_filter_gzip.c 362 state->stream.avail_in = (uInt)avail;
436 ssize_t avail_in, max_in; local
463 __archive_read_filter_ahead(self->upstream, 1, &avail_in);
474 if (avail_in > max_in)
475 avail_in = max_in;
476 state->stream.avail_in = (uInt)avail_in;
483 avail_in - state->stream.avail_in);
487 avail_in - state->stream.avail_in)
    [all...]
archive_read_support_filter_rpm.c 172 ssize_t avail_in, total, used; local
179 total = avail_in = 0;
185 &avail_in);
187 if (avail_in < 0)
196 if (rpm->total_in + avail_in < RPM_LEAD_SIZE)
197 used += avail_in;
210 avail_in - used);
243 avail_in - used);
251 while (used < avail_in) {
265 total = avail_in;
    [all...]
archive_read_support_filter_zstd.c 252 ssize_t avail_in; local
274 &avail_in);
275 if (avail_in < 0) {
276 return avail_in;
278 if (in.src == NULL && avail_in == 0) {
290 in.size = avail_in;
archive_read_support_filter_compress.c 96 size_t avail_in; member in struct:private_data
426 if (state->avail_in <= 0) {
439 state->consume_unnotified = state->avail_in = ret;
442 state->avail_in--;
archive_read_support_filter_uu.c 465 ssize_t avail_in, ravail; local
473 d = __archive_read_filter_ahead(self->upstream, 1, &avail_in);
474 if (d == NULL && avail_in < 0)
476 /* Quiet a code analyzer; make sure avail_in must be zero
479 avail_in = 0;
483 ravail = avail_in;
485 used = avail_in;
500 avail_in + uudecode->in_cnt) != ARCHIVE_OK)
503 d, avail_in);
505 avail_in += uudecode->in_cnt
    [all...]
archive_read_support_filter_xz.c 494 state->stream.avail_in = 0;
539 ssize_t avail_in; local
544 h = __archive_read_filter_ahead(self->upstream, 6, &avail_in);
593 ssize_t avail_in; local
601 f = __archive_read_filter_ahead(self->upstream, tail, &avail_in);
602 if (f == NULL && avail_in < 0)
604 if (f == NULL || avail_in < tail) {
656 ssize_t avail_in; local
680 __archive_read_filter_ahead(self->upstream, 1, &avail_in);
681 if (state->stream.next_in == NULL && avail_in < 0)
    [all...]
archive_write_set_format_7zip.c 137 size_t avail_in; member in struct:la_zstream
713 zip->stream.avail_in = s;
731 if (zip->stream.avail_in == 0)
1799 if (lastrm->avail_out > lastrm->avail_in)
1800 bytes = lastrm->avail_in;
1806 lastrm->avail_in -= bytes;
1812 if (action == ARCHIVE_Z_FINISH && lastrm->avail_in == 0)
1847 strm->avail_in = (uInt)lastrm->avail_in;
1880 strm->avail_in = (uInt)lastrm->avail_in
    [all...]
  /src/common/dist/zlib/contrib/dotzlib/DotZLib/
DotZLib.cs 33 public uint avail_in; field in struct:DotZLib.ZStream
  /src/external/gpl3/binutils/dist/zlib/contrib/dotzlib/DotZLib/
DotZLib.cs 33 public uint avail_in; field in struct:DotZLib.ZStream
  /src/external/gpl3/binutils.old/dist/zlib/contrib/dotzlib/DotZLib/
DotZLib.cs 33 public uint avail_in; field in struct:DotZLib.ZStream
  /src/external/gpl3/gdb/dist/zlib/contrib/dotzlib/DotZLib/
DotZLib.cs 33 public uint avail_in; field in struct:DotZLib.ZStream
  /src/external/gpl3/gdb.old/dist/zlib/contrib/dotzlib/DotZLib/
DotZLib.cs 33 public uint avail_in; field in struct:DotZLib.ZStream
  /src/external/public-domain/xz/dist/src/liblzma/api/lzma/
base.h 256 * pass it normally via lzma_stream.next_in and .avail_in.
279 * LZMA_STREAM_END. Also, the amount of input (that is, strm->avail_in) must
347 * has been consumed (avail_in == 0).
523 size_t avail_in; /**< Number of available input bytes in next_in. */ member in struct:__anon311
622 * strm->avail_in, strm->next_out, and strm->avail_out to pass input
  /src/external/public-domain/xz/dist/src/liblzma/common/
common.h 312 /// A copy of lzma_stream avail_in. This is used to verify that the
315 size_t avail_in; member in struct:lzma_internal_s
  /src/external/cddl/osnet/dist/uts/common/zmod/
zlib.h 86 uInt avail_in; /* number of bytes available at next_in */ member in struct:z_stream_s
131 The application must update next_in and avail_in when avail_in has
254 - Compress more input starting at next_in and update next_in and avail_in
256 enough room in the output buffer), next_in and avail_in are updated and
267 more output, and updating avail_in or avail_out accordingly; avail_out
281 avail_in is zero after the call if enough output space has been provided
324 (for example avail_in or avail_out was zero). Note that Z_BUF_ERROR is not
348 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
349 the caller. If next_in is not Z_NULL and avail_in is large enough (the exac
    [all...]
  /src/common/dist/zlib/
zlib.h 90 uInt avail_in; /* number of bytes available at next_in */ member in struct:z_stream_s
136 The application must update next_in and avail_in when avail_in has dropped
262 - Compress more input starting at next_in and update next_in and avail_in
264 enough room in the output buffer), next_in and avail_in are updated and
275 output, and updating avail_in or avail_out accordingly; avail_out should
291 particular avail_in is zero after the call if enough output space has been
359 avail_in or avail_out was zero). Note that Z_BUF_ERROR is not fatal, and
383 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
396 Actual decompression will be done by inflate(). So next_in, and avail_in,
    [all...]
  /src/sys/net/
zlib.h 364 uInt avail_in; /* number of bytes available at next_in */ member in struct:z_stream_s
386 The application must update next_in and avail_in when avail_in has
506 - Compress more input starting at next_in and update next_in and avail_in
508 enough room in the output buffer), next_in and avail_in are updated and
519 more output, and updating avail_in or avail_out accordingly; avail_out
529 avail_in is zero after the call if enough output space has been provided
561 0.1% larger than avail_in plus 12 bytes. If deflate does not return
577 (for example avail_in or avail_out was zero).
599 next_in, avail_in, zalloc, zfree and opaque must be initialized before b
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/comp/
c_brotli.c 381 size_t avail_in; member in struct:__anon74::__anon75
390 size_t avail_in; member in struct:__anon74::__anon76
527 ctx->decode.avail_in = 0;
535 while (ctx->decode.avail_in > 0 || BrotliDecoderHasMoreOutput(ctx->decode.state)) {
536 bret = BrotliDecoderDecompressStream(ctx->decode.state, &ctx->decode.avail_in, (const uint8_t **)&ctx->decode.next_in,
566 ctx->decode.avail_in = ret;
607 ctx->encode.avail_in = (size_t)inl;
614 int tot = inl - ctx->encode.avail_in;
626 if (ctx->encode.avail_in == 0 && !BrotliEncoderHasMoreOutput(ctx->encode.state))
636 brret = BrotliEncoderCompressStream(ctx->encode.state, BROTLI_OPERATION_FLUSH, &ctx->encode.avail_in, (const uint8_t **)&ctx->encode.next_in
    [all...]
  /src/external/gpl3/binutils/dist/zlib/
zlib.h 88 uInt avail_in; /* number of bytes available at next_in */ member in struct:z_stream_s
134 The application must update next_in and avail_in when avail_in has dropped
260 - Compress more input starting at next_in and update next_in and avail_in
262 enough room in the output buffer), next_in and avail_in are updated and
273 output, and updating avail_in or avail_out accordingly; avail_out should
289 particular avail_in is zero after the call if enough output space has been
357 avail_in or avail_out was zero). Note that Z_BUF_ERROR is not fatal, and
381 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
394 Actual decompression will be done by inflate(). So next_in, and avail_in,
    [all...]
  /src/external/gpl3/binutils.old/dist/zlib/
zlib.h 88 uInt avail_in; /* number of bytes available at next_in */ member in struct:z_stream_s
134 The application must update next_in and avail_in when avail_in has dropped
260 - Compress more input starting at next_in and update next_in and avail_in
262 enough room in the output buffer), next_in and avail_in are updated and
273 output, and updating avail_in or avail_out accordingly; avail_out should
289 particular avail_in is zero after the call if enough output space has been
357 avail_in or avail_out was zero). Note that Z_BUF_ERROR is not fatal, and
381 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
393 Actual decompression will be done by inflate(). So next_in, and avail_in,
    [all...]
  /src/external/gpl3/gdb.old/dist/zlib/
zlib.h 88 uInt avail_in; /* number of bytes available at next_in */ member in struct:z_stream_s
134 The application must update next_in and avail_in when avail_in has dropped
260 - Compress more input starting at next_in and update next_in and avail_in
262 enough room in the output buffer), next_in and avail_in are updated and
273 output, and updating avail_in or avail_out accordingly; avail_out should
289 particular avail_in is zero after the call if enough output space has been
357 avail_in or avail_out was zero). Note that Z_BUF_ERROR is not fatal, and
381 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
393 Actual decompression will be done by inflate(). So next_in, and avail_in,
    [all...]
  /src/external/gpl3/gdb/dist/zlib/
zlib.h 88 uInt avail_in; /* number of bytes available at next_in */ member in struct:z_stream_s
134 The application must update next_in and avail_in when avail_in has dropped
260 - Compress more input starting at next_in and update next_in and avail_in
262 enough room in the output buffer), next_in and avail_in are updated and
273 output, and updating avail_in or avail_out accordingly; avail_out should
289 particular avail_in is zero after the call if enough output space has been
357 avail_in or avail_out was zero). Note that Z_BUF_ERROR is not fatal, and
381 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
394 Actual decompression will be done by inflate(). So next_in, and avail_in,
    [all...]

Completed in 38 milliseconds

1 2