/external/zlib/src/contrib/delphi/ |
D | ZLib.pas | 30 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;
|
/external/zlib/src/contrib/dotzlib/DotZLib/ |
D | CodecBase.cs | 77 if (_ztream.total_out > 0) in OnDataAvailable() 80 DataAvailable( _outBuffer, 0, (int)_ztream.total_out); in OnDataAvailable() 182 _ztream.total_out = 0; in resetOutput()
|
D | DotZLib.cs | 38 public uint total_out; field
|
/external/freetype/src/gzip/ |
D | infutil.c | 42 z->total_out += n; in inflate_flush() 68 z->total_out += n; in inflate_flush()
|
D | zlib.h | 75 uLong total_out; /* total nb of bytes output so far */ member
|
D | infblock.c | 212 z->total_out + (q >= s->read ? q - s->read : in inflate_blocks() 346 z->total_out + (q >= s->read ? q - s->read : in inflate_blocks()
|
/external/elfutils/0.153/libdwfl/ |
D | gzip.c | 231 uint64_t total_out = (((uint64_t) z.total_out_hi32 << 32) in unzip() local 233 smaller_buffer (total_out); in unzip() 235 smaller_buffer (z.total_out); in unzip()
|
/external/zlib/src/contrib/pascal/ |
D | example.pas | 202 (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;
|
/external/protobuf/src/google/protobuf/io/ |
D | gzip_stream.cc | 55 zcontext_.total_out = 0; in GzipInputStream() 165 return zcontext_.total_out + in ByteCount() 211 zcontext_.total_out = 0; in Init()
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/ |
D | gzip_stream.cc | 55 zcontext_.total_out = 0; in GzipInputStream() 181 return zcontext_.total_out + in ByteCount() 217 zcontext_.total_out = 0; in Init()
|
/external/chromium_org/components/metrics/ |
D | compression_utils.cc | 68 *dest_length = stream.total_out; in GzipCompressHelper() 107 *dest_length = stream.total_out; in GzipUncompressHelper()
|
/external/zlib/src/test/ |
D | example.c | 218 while (c_stream.total_in != len && c_stream.total_out < comprLen) { 258 while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) { 364 if (d_stream.total_out != 2*uncomprLen + comprLen/2) { 365 fprintf(stderr, "bad large inflate: %ld\n", d_stream.total_out); 407 *comprLen = c_stream.total_out;
|
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/ |
D | fx_zlib_uncompr.c | 55 *destLen = stream.total_out; in uncompress()
|
D | fx_zlib_compress.c | 54 *destLen = stream.total_out; in compress2()
|
D | fx_zlib_inflate.c | 111 strm->total_in = strm->total_out = state->total = 0; in inflateResetKeep() 1178 strm->total_out += out; in inflate() 1241 strm->total_out += out; in inflate() 1414 in = strm->total_in; out = strm->total_out; in inflateSync() 1416 strm->total_in = in; strm->total_out = out; in inflateSync()
|
/external/chromium_org/third_party/zlib/ |
D | uncompr.c | 55 *destLen = stream.total_out;
|
D | compress.c | 54 *destLen = stream.total_out;
|
D | inflate.c | 110 strm->total_in = strm->total_out = state->total = 0; 1163 strm->total_out += out; 1225 strm->total_out += out; 1381 in = strm->total_in; out = strm->total_out; 1383 strm->total_in = in; strm->total_out = out;
|
/external/zlib/src/ |
D | uncompr.c | 55 *destLen = stream.total_out;
|
D | compress.c | 54 *destLen = stream.total_out;
|
/external/qemu/distrib/zlib-1.2.8/ |
D | uncompr.c | 55 *destLen = stream.total_out;
|
D | compress.c | 54 *destLen = stream.total_out;
|
D | inflate.c | 111 strm->total_in = strm->total_out = state->total = 0; 1178 strm->total_out += out; 1241 strm->total_out += out; 1413 in = strm->total_in; out = strm->total_out; 1415 strm->total_in = in; strm->total_out = out;
|
/external/zlib/src/contrib/testzlib/ |
D | testzlib.c | 215 lSizeCpr=zcpr.total_out; in main() 256 lSizeUncpr=zcpr.total_out; in main()
|
/external/chromium_org/third_party/zlib/contrib/minizip/ |
D | unzip.c | 1548 pfile_in_zip_read_info->stream.total_out = 0; in unzOpenCurrentFile3() 1787 pfile_in_zip_read_info->stream.total_out += uDoCopy; in unzReadCurrentFile() 1803 … pfile_in_zip_read_info->bstream.total_out_lo32 = pfile_in_zip_read_info->stream.total_out; in unzReadCurrentFile() 1825 … pfile_in_zip_read_info->stream.total_out = pfile_in_zip_read_info->bstream.total_out_lo32; in unzReadCurrentFile() 1840 uTotalOutBefore = pfile_in_zip_read_info->stream.total_out; in unzReadCurrentFile() 1854 uTotalOutAfter = pfile_in_zip_read_info->stream.total_out; in unzReadCurrentFile() 1896 return (z_off_t)pfile_in_zip_read_info->stream.total_out; in unztell()
|