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

/ast/src/lib/libbz/
H A Dbzlib.h87 unsigned int total_in; member in struct:__anon329
H A Dbzlib.c208 strm->total_in = 0;
307 s->strm->total_in++;
324 s->strm->total_in++;
513 strm->total_in = 0;
1019 if (nbytes_in != NULL) *nbytes_in = bzf->strm.total_in;
H A Ddecompress.c103 s->strm->total_in++; \
/ast/src/lib/libz/
H A Ddeflate.c367 strm->total_in = strm->total_out = 0;
438 if (func != configuration_table[level].func && strm->total_in != 0) {
839 put_byte(s, (Byte)(strm->total_in & 0xff));
840 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
841 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
842 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
978 strm->total_in += len;
H A Dinflate.c110 strm->total_in = strm->total_out = state->total = 0;
1142 strm->total_in += in;
1266 unsigned long in, out; /* temporary to save total_in and total_out */
1294 strm->total_in += len;
1298 in = strm->total_in; out = strm->total_out;
1300 strm->total_in = in; strm->total_out = out;
H A Dexample.c187 while (c_stream.total_in != len && c_stream.total_out < comprLen) {
227 while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) {
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
/ast/src/cmd/INIT/
H A Dratz.c508 uLong total_in; /* total nb of input bytes read so far */ member in struct:z_stream_s
2336 strm->total_in = strm->total_out = state->total = 0;
3361 strm->total_in += in;
3487 unsigned long in, out; /* temporary to save total_in and total_out */
3515 strm->total_in += len;
3519 in = strm->total_in; out = strm->total_out;
3521 strm->total_in = in; strm->total_out = out;

Completed in 34 milliseconds