Searched refs:total_in (Results 1 - 25 of 38) sorted by relevance

12

/external/zlib/src/contrib/testzlib/
H A Dtestzlib.c206 long all_read_before = zcpr.total_in;
210 lOrigDone += (zcpr.total_in-all_read_before);
211 lOrigToDo -= (zcpr.total_in-all_read_before);
247 long all_read_before = zcpr.total_in;
251 lOrigDone += (zcpr.total_in-all_read_before);
252 lOrigToDo -= (zcpr.total_in-all_read_before);
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DInflater.cs75 inputIndex += (int)_ztream.total_in;
H A DCodecBase.cs172 _ztream.total_in = 0;
H A DDeflater.cs76 inputIndex += (int)_ztream.total_in;
H A DDotZLib.cs34 public uint total_in; field in struct:DotZLib.ZStream
/external/freetype/src/gzip/
H A Dzlib.h71 uLong total_in; /* total nb of input bytes read so far */ member in struct:z_stream_s
116 The fields total_in and total_out can be used for statistics or
117 progress reports. After compression, total_in holds the total size of
259 so far (that is, total_in bytes).
563 case, the application may save the current current value of total_in which
H A Dinfutil.h67 #define UPDIN {z->avail_in=n;z->total_in+=p-z->next_in;z->next_in=p;}
H A Dinflate.c59 z->total_in = z->total_out = 0;
144 #define NEXTBYTE (z->avail_in--,z->total_in++,*z->next_in++)
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dgzip_stream.cc58 zcontext_.total_in = 0;
220 zcontext_.total_in = 0;
298 return zcontext_.total_in + zcontext_.avail_in;
/external/protobuf/src/google/protobuf/io/
H A Dgzip_stream.cc58 zcontext_.total_in = 0;
214 zcontext_.total_in = 0;
293 return zcontext_.total_in + zcontext_.avail_in;
/external/zlib/src/examples/
H A Dgzappend.c367 /* set up deflate stream with window, crc, total_in, and leftover bits */
372 strm->total_in = tot;
443 out[4] = (unsigned char)(strm->total_in);
444 out[5] = (unsigned char)(strm->total_in >> 8);
445 out[6] = (unsigned char)(strm->total_in >> 16);
446 out[7] = (unsigned char)(strm->total_in >> 24);
H A Dfitblk.c231 size - have, size, def.total_in);
/external/zlib/src/contrib/delphi/
H A DZLib.pas26 total_in: Longint; // total nb of input bytes read so far
467 Result := FZRec.total_in
474 if FZRec.total_in = 0 then
477 Result := (1.0 - (FZRec.total_out / FZRec.total_in)) * 100.0;
/external/chromium_org/third_party/zlib/
H A Ddeflate.c367 strm->total_in = strm->total_out = 0;
441 strm->total_in != 0) {
898 put_byte(s, (Byte)(strm->total_in & 0xff));
899 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
900 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
901 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
1038 strm->total_in += len;
H A Dinflate.c110 strm->total_in = strm->total_out = state->total = 0;
1224 strm->total_in += in;
1349 unsigned long in, out; /* temporary to save total_in and total_out */
1377 strm->total_in += len;
1381 in = strm->total_in; out = strm->total_out;
1383 strm->total_in = in; strm->total_out = out;
H A Dzlib.h88 uLong total_in; /* total nb of input bytes read so far */ member in struct:z_stream_s
157 The fields total_in and total_out can be used for statistics or progress
158 reports. After compression, total_in holds the total size of the
339 so far (that is, total_in bytes).
820 success case, the application may save the current current value of total_in
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_deflate.c401 strm->total_in = strm->total_out = 0;
512 strm->total_in != 0) {
958 put_byte(s, (Byte)(strm->total_in & 0xff));
959 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
960 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
961 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
1097 strm->total_in += len;
H A Dfx_zlib_inflate.c111 strm->total_in = strm->total_out = state->total = 0;
1240 strm->total_in += in;
1382 unsigned long in, out; /* temporary to save total_in and total_out */
1410 strm->total_in += len;
1414 in = strm->total_in; out = strm->total_out;
1416 strm->total_in = in; strm->total_out = out;
/external/qemu/distrib/zlib-1.2.8/
H A Ddeflate.c402 strm->total_in = strm->total_out = 0;
513 strm->total_in != 0) {
959 put_byte(s, (Byte)(strm->total_in & 0xff));
960 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
961 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
962 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
1098 strm->total_in += len;
H A Dinflate.c111 strm->total_in = strm->total_out = state->total = 0;
1240 strm->total_in += in;
1381 unsigned long in, out; /* temporary to save total_in and total_out */
1409 strm->total_in += len;
1413 in = strm->total_in; out = strm->total_out;
1415 strm->total_in = in; strm->total_out = out;
H A Dzlib.h88 uLong total_in; /* total number of input bytes read so far */ member in struct:z_stream_s
156 The fields total_in and total_out can be used for statistics or progress
157 reports. After compression, total_in holds the total size of the
335 so far (that is, total_in bytes).
871 total_in which indicates where valid compressed data was found. In the
/external/zlib/src/
H A Ddeflate.c402 strm->total_in = strm->total_out = 0;
513 strm->total_in != 0) {
959 put_byte(s, (Byte)(strm->total_in & 0xff));
960 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
961 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
962 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
1098 strm->total_in += len;
H A Dinflate.c111 strm->total_in = strm->total_out = state->total = 0;
1240 strm->total_in += in;
1381 unsigned long in, out; /* temporary to save total_in and total_out */
1409 strm->total_in += len;
1413 in = strm->total_in; out = strm->total_out;
1415 strm->total_in = in; strm->total_out = out;
/external/zlib/src/test/
H A Dexample.c218 while (c_stream.total_in != len && c_stream.total_out < comprLen) {
258 while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) {
/external/chromium_org/sdch/open-vcdiff/src/zlib/
H A Dzlib.h85 uLong total_in; /* total nb of input bytes read so far */ member in struct:z_stream_s
153 The fields total_in and total_out can be used for statistics or
154 progress reports. After compression, total_in holds the total size of
310 so far (that is, total_in bytes).
767 case, the application may save the current current value of total_in which

Completed in 328 milliseconds

12