/src/common/dist/zlib/contrib/testzlib/ |
testzlib.c | 206 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);
|
/src/common/dist/zlib/contrib/dotzlib/DotZLib/ |
Inflater.cs | 75 inputIndex += (int)_ztream.total_in;
|
Deflater.cs | 76 inputIndex += (int)_ztream.total_in;
|
CodecBase.cs | 172 _ztream.total_in = 0;
|
DotZLib.cs | 34 public uint total_in;
field in struct:DotZLib.ZStream
|
/src/common/dist/zlib/examples/ |
gzappend.c | 367 /* 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);
|
fitblk.c | 231 size - have, size, def.total_in);
|
/src/common/dist/zlib/contrib/delphi/ |
ZLib.pas | 26 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;
|
/src/common/dist/zlib/test/ |
example.c | 181 while (c_stream.total_in != len && c_stream.total_out < comprLen) { 219 while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) {
|
/src/common/dist/zlib/ |
inflate.c | 113 strm->total_in = strm->total_out = state->total = 0; 1261 strm->total_in += in; 1387 unsigned long in, out; /* temporary to save total_in and total_out */ 1415 strm->total_in += len; 1424 in = strm->total_in; out = strm->total_out; 1426 strm->total_in = in; strm->total_out = out;
|
deflate.c | 238 strm->total_in += len; 644 strm->total_in = strm->total_out = 0; 1240 put_byte(s, (Byte)(strm->total_in & 0xff)); 1241 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff)); 1242 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff)); 1243 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
|
zlib.h | 91 uLong total_in; /* total number of input bytes read so far */ member in struct:z_stream_s 162 The fields total_in and total_out can be used for statistics or progress 163 reports. After compression, total_in holds the total size of the 235 allocation functions. total_in, total_out, adler, and msg are initialized. 344 so far (that is, total_in bytes). If a gzip stream is being generated, then 388 them to use default allocation functions. total_in, total_out, adler, and 702 set unchanged. total_in, total_out, adler, and msg are initialized. 941 In the success case, the application may save the current value of total_in 968 total_in, total_out, adler, and msg are initialized.
|
/src/sys/net/ |
zlib.h | 365 uLong total_in; /* total nb of input bytes read so far */ member in struct:z_stream_s 410 The fields total_in and total_out can be used for statistics or 411 progress reports. After compression, total_in holds the total size of 565 so far (that is, total_in bytes). 889 case, the application may save the current current value of total_in which
|
zlib.c | 948 strm->total_in = strm->total_out = 0; 991 if (func != configuration_table[level].func && strm->total_in != 0) { 1304 strm->total_in += len; 3416 z->total_in = z->total_out = 0; 3502 #define NEXTBYTE (z->avail_in--,z->total_in++,*z->next_in++) 3693 uLong r, w; /* temporaries to save total_in and total_out */ 3722 z->total_in += p - z->next_in; 3730 r = z->total_in; w = z->total_out; 3732 z->total_in = r; z->total_out = w; 3930 #define UPDIN {z->avail_in=n;z->total_in+=p-z->next_in;z->next_in=p; [all...] |
/src/common/dist/zlib/contrib/pascal/ |
example.pas | 201 while (c_stream.total_in <> len) and 248 (d_stream.total_in < comprLen) do
|
zlibpas.pas | 31 total_in: LongInt; (* total nb of input bytes read so far *)
|
/src/common/dist/zlib/contrib/minizip/ |
zip.c | 1173 zi->ci.stream.total_in = 0; 1355 zi->ci.totalUncompressedData += zi->ci.stream.total_in; 1356 zi->ci.stream.total_in = 0; 1455 zi->ci.stream.total_in+= copy_this;
|
unzip.c | 1671 pfile_in_zip_read_info->bstream.total_in_lo32 = pfile_in_zip_read_info->stream.total_in; 1694 pfile_in_zip_read_info->stream.total_in = pfile_in_zip_read_info->bstream.total_in_lo32;
|
/src/sys/external/bsd/drm2/dist/drm/i915/ |
i915_gpu_error.c | 322 if (0 && zstream->total_out > zstream->total_in)
|