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

/forgerock/web-agents-v4/zlib/
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
H A Dzip.c1206 zi->ci.stream.total_in = 0;
1396 zi->ci.totalUncompressedData += zi->ci.stream.total_in;
1397 zi->ci.stream.total_in = 0;
1502 zi->ci.stream.total_in+= copy_this;

Completed in 180 milliseconds