Searched refs:total_out (Results 1 - 7 of 7) sorted by relevance

/forgerock/web-agents-v4/zlib/
H A Duncompr.c55 *destLen = stream.total_out;
H A Dcompress.c54 *destLen = stream.total_out;
H A Dinflate.c111 strm->total_in = strm->total_out = state->total = 0;
1178 strm->total_out += out;
1241 strm->total_out += out;
1381 unsigned long in, out; /* temporary to save total_in and total_out */
1413 in = strm->total_in; out = strm->total_out;
1415 strm->total_in = in; strm->total_out = out;
H A Dzip.c1207 zi->ci.stream.total_out = 0;
1476 uLong uTotalOutBefore = zi->ci.stream.total_out;
1478 if(uTotalOutBefore > zi->ci.stream.total_out)
1484 zi->ci.pos_in_buffered_data += (uInt)(zi->ci.stream.total_out - uTotalOutBefore) ;
1503 zi->ci.stream.total_out+= copy_this;
1546 uTotalOutBefore = zi->ci.stream.total_out;
1548 zi->ci.pos_in_buffered_data += (uInt)(zi->ci.stream.total_out - uTotalOutBefore) ;
H A Dzlib.h92 uLong total_out; /* total number of bytes output so far */ member in struct:z_stream_s
156 The fields total_in and total_out can be used for statistics or progress
478 total_out bytes) and returns Z_OK, Z_STREAM_END or an error code as described
H A Ddeflate.c402 strm->total_in = strm->total_out = 0;
656 strm->total_out += len;
/forgerock/web-agents-v4/source/
H A Dutility.c671 strm.total_out = 0;
683 if (strm.total_out >= uncompLength) {
695 strm.next_out = (Bytef *) (uncomp + strm.total_out);
696 strm.avail_out = (uInt) uncompLength - strm.total_out;
711 *compressed_sz = strm.total_out;
729 strm.total_out = 0;
747 strm.next_out = (Bytef *) (comp + strm.total_out);
748 strm.avail_out = comp_length - strm.total_out;
764 *uncompressed_sz = strm.total_out;

Completed in 202 milliseconds