Home
last modified time | relevance | path

Searched refs:total_out (Results 1 – 25 of 152) sorted by relevance

1234567

/third_party/ffmpeg/tools/
Dcws2fws.c94 last_out = zstream.total_out; in main()
110 zstream.total_out, zstream.total_out - last_out); in main()
112 if (write(fd_out, &buf_out, zstream.total_out - last_out) < in main()
113 zstream.total_out - last_out) { in main()
125 if (zstream.total_out != uncomp_len - 8) { in main()
127 zstream.total_out, uncomp_len - 8); in main()
129 buf_in[0] = (zstream.total_out + 8) & 0xff; in main()
130 buf_in[1] = ((zstream.total_out + 8) >> 8) & 0xff; in main()
131 buf_in[2] = ((zstream.total_out + 8) >> 16) & 0xff; in main()
132 buf_in[3] = ((zstream.total_out + 8) >> 24) & 0xff; in main()
/third_party/skia/third_party/externals/brotli/c/fuzz/
Ddecode_fuzzer.c27 size_t total_out = 0; in LLVMFuzzerTestOneInput() local
45 state, &avail_in, &next_in, &avail_out, &next_out, &total_out); in LLVMFuzzerTestOneInput()
46 if (total_out > total_out_limit) in LLVMFuzzerTestOneInput()
49 if (total_out > total_out_limit) in LLVMFuzzerTestOneInput()
/third_party/boost/libs/beast/test/bench/zlib/
Dinflate_stream.cpp95 out.resize(zs.total_out); in compress()
119 out.resize(2 * zs.total_out); in doInflateBeast()
120 zs.next_out = &out[zs.total_out]; in doInflateBeast()
121 zs.avail_out = out.size() - zs.total_out; in doInflateBeast()
123 out.resize(zs.total_out); in doInflateBeast()
153 out.resize(2 * zs.total_out); in doInflateZLib()
154 zs.next_out = (Bytef*)&out[zs.total_out]; in doInflateZLib()
156 out.size() - zs.total_out); in doInflateZLib()
158 out.resize(zs.total_out); in doInflateZLib()
/third_party/miniz/
Dminiz.c203 pStream->total_out = 0; in mz_deflateInit2()
228 pStream->total_in = pStream->total_out = 0; in mz_deflateReset()
251 orig_total_out = pStream->total_out; in mz_deflate()
266 pStream->total_out += (mz_uint)out_bytes; in mz_deflate()
282 … if ((flush) || (pStream->total_in != orig_total_in) || (pStream->total_out != orig_total_out)) in mz_deflate()
336 *pDest_len = stream.total_out; in mz_compress2()
371 pStream->total_out = 0; in mz_inflateInit2()
410 pStream->total_out = 0; in mz_inflateReset()
468 pStream->total_out += (mz_uint)out_bytes; in mz_inflate()
489 pStream->total_out += n; in mz_inflate()
[all …]
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/contrib/dotzlib/DotZLib/
DCodecBase.cs77 if (_ztream.total_out > 0) in OnDataAvailable()
80 DataAvailable( _outBuffer, 0, (int)_ztream.total_out); in OnDataAvailable()
182 _ztream.total_out = 0; in resetOutput()
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/contrib/dotzlib/DotZLib/
DCodecBase.cs77 if (_ztream.total_out > 0) in OnDataAvailable()
80 DataAvailable( _outBuffer, 0, (int)_ztream.total_out); in OnDataAvailable()
182 _ztream.total_out = 0; in resetOutput()
/third_party/zlib/contrib/dotzlib/DotZLib/
DCodecBase.cs77 if (_ztream.total_out > 0) in OnDataAvailable()
80 DataAvailable( _outBuffer, 0, (int)_ztream.total_out); in OnDataAvailable()
182 _ztream.total_out = 0; in resetOutput()
/third_party/zlib/contrib/delphi/
DZLib.pas30 total_out: Longint; // total nb of bytes output so far
315 ReallocMem(OutBuf, strm.total_out);
316 OutBytes := strm.total_out;
358 ReallocMem(OutBuf, strm.total_out);
359 OutBytes := strm.total_out;
477 Result := (1.0 - (FZRec.total_out / FZRec.total_in)) * 100.0;
541 ( ((Offset - FZRec.total_out) > 0) and (Origin = soFromBeginning)) then
543 if Origin = soFromBeginning then Dec(Offset, FZRec.total_out);
553 Result := FZRec.total_out;
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/contrib/delphi/
DZLib.pas30 total_out: Longint; // total nb of bytes output so far
315 ReallocMem(OutBuf, strm.total_out);
316 OutBytes := strm.total_out;
358 ReallocMem(OutBuf, strm.total_out);
359 OutBytes := strm.total_out;
477 Result := (1.0 - (FZRec.total_out / FZRec.total_in)) * 100.0;
541 ( ((Offset - FZRec.total_out) > 0) and (Origin = soFromBeginning)) then
543 if Origin = soFromBeginning then Dec(Offset, FZRec.total_out);
553 Result := FZRec.total_out;
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/contrib/delphi/
DZLib.pas30 total_out: Longint; // total nb of bytes output so far
315 ReallocMem(OutBuf, strm.total_out);
316 OutBytes := strm.total_out;
358 ReallocMem(OutBuf, strm.total_out);
359 OutBytes := strm.total_out;
477 Result := (1.0 - (FZRec.total_out / FZRec.total_in)) * 100.0;
541 ( ((Offset - FZRec.total_out) > 0) and (Origin = soFromBeginning)) then
543 if Origin = soFromBeginning then Dec(Offset, FZRec.total_out);
553 Result := FZRec.total_out;
/third_party/boost/libs/beast/test/beast/zlib/
Ddeflate_stream.cpp44 virtual std::size_t total_out() const noexcept = 0;
83 virtual std::size_t total_out() const noexcept override { return zs.total_out; } in total_out() function in boost::beast::zlib::deflate_stream_test::ZlibCompressor
146 virtual std::size_t total_out() const noexcept override { return zp.total_out; } in total_out() function in boost::beast::zlib::deflate_stream_test::BeastCompressor
233 out.resize(zs.total_out); in compress()
255 out.resize(zs.total_out + 1024); in decompress()
256 zs.next_out = (Bytef*)&out[zs.total_out]; in decompress()
258 out.size() - zs.total_out); in decompress()
271 out.resize(zs.total_out); in decompress()
339 out.resize(c.total_out()); in doDeflate1_beast()
395 out.resize(c.total_out()); in doDeflate2_beast()
/third_party/miniz/examples/
Dexample5.c57 size_t total_in = 0, total_out = 0; in main() local
211 total_out += out_bytes; in main()
278 total_out += out_bytes; in main()
324 printf("Total output bytes: %u\n", (mz_uint32)total_out); in main()
/third_party/boost/boost/beast/websocket/detail/
Dimpl_base.hpp109 BOOST_ASSERT(zs.total_out == out.size()); in deflate()
115 BOOST_ASSERT(zs.total_out == out.size()); in deflate()
143 zs.total_out -= 4; in deflate()
144 out = net::buffer(out.data(), zs.total_out); in deflate()
150 out = net::buffer(out.data(), zs.total_out); in deflate()
/third_party/freetype/src/gzip/
Dinfutil.c42 z->total_out += n; in inflate_flush()
68 z->total_out += n; in inflate_flush()
/third_party/skia/third_party/externals/freetype/src/gzip/
Dinfutil.c42 z->total_out += n; in inflate_flush()
68 z->total_out += n; in inflate_flush()
/third_party/flutter/skia/third_party/externals/freetype/src/gzip/
Dinfutil.c42 z->total_out += n; in inflate_flush()
68 z->total_out += n; in inflate_flush()
/third_party/protobuf/src/google/protobuf/io/
Dgzip_stream.cc56 zcontext_.total_out = 0; in GzipInputStream()
144 byte_count_ += zcontext_.total_out; in Next()
189 int64 ret = byte_count_ + zcontext_.total_out; in ByteCount()
229 zcontext_.total_out = 0; in Init()
/third_party/skia/third_party/externals/zlib/
Duncompr.c75 *destLen = stream.total_out;
76 else if (stream.total_out && err == Z_BUF_ERROR)
/third_party/zlib/
Duncompr.c75 *destLen = stream.total_out;
76 else if (stream.total_out && err == Z_BUF_ERROR)
/third_party/node/deps/zlib/
Duncompr.c75 *destLen = stream.total_out;
76 else if (stream.total_out && err == Z_BUF_ERROR)
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/
Duncompr.c75 *destLen = stream.total_out;
76 else if (stream.total_out && err == Z_BUF_ERROR)
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/
Duncompr.c75 *destLen = stream.total_out;
76 else if (stream.total_out && err == Z_BUF_ERROR)
/third_party/flutter/skia/third_party/externals/zlib/
Duncompr.c75 *destLen = stream.total_out;
76 else if (stream.total_out && err == Z_BUF_ERROR)
/third_party/zlib/contrib/pascal/
Dexample.pas202 (c_stream.total_out < comprLen) do
247 while (d_stream.total_out < uncomprLen) and
354 if d_stream.total_out <> 2 * uncomprLen + comprLen div 2 then
356 WriteLn('bad large inflate: ', d_stream.total_out);
399 comprLen := c_stream.total_out;
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/contrib/pascal/
Dexample.pas202 (c_stream.total_out < comprLen) do
247 while (d_stream.total_out < uncomprLen) and
354 if d_stream.total_out <> 2 * uncomprLen + comprLen div 2 then
356 WriteLn('bad large inflate: ', d_stream.total_out);
399 comprLen := c_stream.total_out;

1234567