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

/barrelfish-master/lib/openssl-1.0.0d/demos/tunala/
H A Dbuffer.c8 buf->total_in = buf->total_out = 0;
31 return buf->total_in; }
50 buf->total_in += added;
97 buf->total_in += toread;
159 buf->total_in += ret;
187 buf->total_in += ret;
H A Dtunala.h90 unsigned long total_in, total_out; member in struct:_buffer_t
/barrelfish-master/usr/slideshow/
H A Dzlib_load.c41 while(d_stream.total_out < dstsize && d_stream.total_in < srcsize) {
/barrelfish-master/lib/zlib/
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;
/barrelfish-master/include/
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 58 milliseconds