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

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Ddeflate.c391 strm->total_in = strm->total_out = 0;
462 if (func != configuration_table[level].func && strm->total_in != 0) {
863 put_byte(s, (Byte)(strm->total_in & 0xff));
864 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
865 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
866 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
1002 strm->total_in += len;
H A Dinflate.c134 strm->total_in = strm->total_out = state->total = 0;
1166 strm->total_in += in;
1290 unsigned long in, out; /* temporary to save total_in and total_out */
1318 strm->total_in += len;
1322 in = strm->total_in; out = strm->total_out;
1324 strm->total_in = in; strm->total_out = out;
H A Dzlib.h109 uLong total_in; /* total nb of input bytes read so far */ member in struct:z_stream_s
177 The fields total_in and total_out can be used for statistics or
178 progress reports. After compression, total_in holds the total size of
334 so far (that is, total_in bytes).
791 case, the application may save the current current value of total_in which

Completed in 49 milliseconds