HomeSort by relevance Sort by last modified time
    Searched refs:avail_out (Results 1 - 25 of 218) sorted by null

1 2 3 4 5 6 7 8 9

  /toolchain/binutils/binutils-2.27/gas/
compress-debug.c 46 int *avail_in, char **next_out, int *avail_out)
54 strm->avail_out = *avail_out;
60 out_size = *avail_out - strm->avail_out;
64 *avail_out = strm->avail_out;
75 int *avail_out, int *out_size)
81 strm->avail_out = *avail_out;
    [all...]
  /external/bsdiff/
brotli_compressor.cc 51 size_t avail_out = kBufferSize; local
55 &next_in, &avail_out, &next_out, nullptr)) {
61 uint64_t output_bytes = comp_buffer_.buffer_size() - avail_out;
76 size_t avail_out = kBufferSize; local
80 &avail_out, &next_out, nullptr)) {
85 uint64_t output_bytes = comp_buffer_.buffer_size() - avail_out;
bz2_compressor.cc 52 bz_strm_.avail_out = comp_buffer_.buffer_size();
59 uint64_t output_bytes = comp_buffer_.buffer_size() - bz_strm_.avail_out;
76 bz_strm_.avail_out = comp_buffer_.buffer_size();
79 uint64_t output_bytes = comp_buffer_.buffer_size() - bz_strm_.avail_out;
  /external/freetype/src/gzip/
infutil.c 37 if (n > z->avail_out) n = z->avail_out;
41 z->avail_out -= n;
63 if (n > z->avail_out) n = z->avail_out;
67 z->avail_out -= n;
  /external/zlib/src/examples/
fitblk.c 88 } 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 = size
    [all...]
zpipe.c 65 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);
zran.c 169 strm.avail_out = 0;
186 if (strm.avail_out == 0) {
187 strm.avail_out = WINSIZE;
194 totout += strm.avail_out;
197 totout -= strm.avail_out;
217 totout, strm.avail_out, window);
297 strm.avail_out = len;
302 strm.avail_out = WINSIZE;
307 strm.avail_out = (unsigned)offset;
312 /* uncompress until avail_out filled, or end of stream *
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/examples/
fitblk.c 88 } 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 = size
    [all...]
zpipe.c 65 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);
zran.c 169 strm.avail_out = 0;
186 if (strm.avail_out == 0) {
187 strm.avail_out = WINSIZE;
194 totout += strm.avail_out;
197 totout -= strm.avail_out;
217 totout, strm.avail_out, window);
297 strm.avail_out = len;
302 strm.avail_out = WINSIZE;
307 strm.avail_out = (unsigned)offset;
312 /* uncompress until avail_out filled, or end of stream *
    [all...]
  /external/python/cpython3/Modules/zlib/
uncompr.c 59 stream.avail_out = 0;
62 if (stream.avail_out == 0) {
63 stream.avail_out = left > (uLong)max ? max : (uInt)left;
64 left -= stream.avail_out;
82 err == Z_BUF_ERROR && left + stream.avail_out ? Z_DATA_ERROR :
compress.c 45 stream.avail_out = 0;
50 if (stream.avail_out == 0) {
51 stream.avail_out = left > (uLong)max ? max : (uInt)left;
52 left -= stream.avail_out;
  /external/zlib/src/
uncompr.c 59 stream.avail_out = 0;
62 if (stream.avail_out == 0) {
63 stream.avail_out = left > (uLong)max ? max : (uInt)left;
64 left -= stream.avail_out;
82 err == Z_BUF_ERROR && left + stream.avail_out ? Z_DATA_ERROR :
compress.c 45 stream.avail_out = 0;
50 if (stream.avail_out == 0) {
51 stream.avail_out = left > (uLong)max ? max : (uInt)left;
52 left -= stream.avail_out;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
uncompr.c 39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
uncompr.c 41 stream.avail_out = (uInt)*destLen;
42 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
  /external/python/cpython2/Modules/zlib/
uncompr.c 39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
  /external/syslinux/com32/lib/zlib/
uncompr.c 39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
  /external/tensorflow/tensorflow/core/lib/io/
zlib_outputbuffer.cc 67 z_stream_->avail_out = output_buffer_capacity_;
115 // avail_out is greater than six to avoid repeated flush markers due
116 // to avail_out == 0 on return."
120 if (z_stream_->avail_out == 0 ||
121 (IsSyncOrFullFlush(flush_mode) && z_stream_->avail_out < 6)) {
125 } while (z_stream_->avail_out == 0);
133 uint32 bytes_to_write = output_buffer_capacity_ - z_stream_->avail_out;
139 z_stream_->avail_out = output_buffer_capacity_;
178 if (z_stream_->avail_out == 0) {
184 } while (z_stream_->avail_out == 0)
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/
uncompr.c 39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
  /external/syslinux/com32/libupload/
zout.c 25 be->zstream.avail_out = be->alloc = 0;
43 be->zbytes = be->alloc - be->zstream.avail_out;
44 if (be->zstream.avail_out)
53 be->zstream.avail_out = be->alloc - be->zbytes;
  /external/skia/tests/
PDFDeflateWStreamTest.cpp 45 flateData.avail_out = kBufferSize;
65 if (flateData.avail_out < kBufferSize) {
66 if (!dst->write(outputBuffer, kBufferSize - flateData.avail_out)) {
71 flateData.avail_out = kBufferSize;
88 if (flateData.avail_out < kBufferSize) {
89 if (!dst->write(outputBuffer, kBufferSize - flateData.avail_out)) {
94 flateData.avail_out = kBufferSize;
  /external/skqp/tests/
PDFDeflateWStreamTest.cpp 45 flateData.avail_out = kBufferSize;
65 if (flateData.avail_out < kBufferSize) {
66 if (!dst->write(outputBuffer, kBufferSize - flateData.avail_out)) {
71 flateData.avail_out = kBufferSize;
88 if (flateData.avail_out < kBufferSize) {
89 if (!dst->write(outputBuffer, kBufferSize - flateData.avail_out)) {
94 flateData.avail_out = kBufferSize;
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
ZLib.c 76 stream.avail_out = CHUNK;
88 have = CHUNK - stream.avail_out;
91 } while (stream.avail_out == 0);
  /system/update_engine/payload_consumer/
bzip_extent_writer.cc 58 stream_.avail_out = output_buffer.size();
63 if (stream_.avail_out == output_buffer.size())
68 output_buffer.size() - stream_.avail_out));

Completed in 1047 milliseconds

1 2 3 4 5 6 7 8 9