Searched refs:total_in (Results 26 - 40 of 40) sorted by relevance

12

/freebsd-12-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_zip.c963 stream.total_in = 0;
1754 zip->zipx_lzma_stream.total_in = 0;
1807 zip->zipx_lzma_stream.total_in = 0;
1833 if((int64_t) zip->zipx_lzma_stream.total_in !=
1846 to_consume = zip->zipx_lzma_stream.total_in;
1902 zip->zipx_lzma_stream.total_in = 0;
1926 if((int64_t) zip->zipx_lzma_stream.total_in !=
1947 to_consume = zip->zipx_lzma_stream.total_in;
2430 zip->stream.total_in = 0;
2453 bytes_avail = zip->stream.total_in;
[all...]
H A Darchive_read_support_format_lha.c141 int64_t total_in; member in struct:lzh_stream
1599 lha->strm.total_in = 0;
1614 lha->entry_unconsumed = lha->strm.total_in;
1615 lha->entry_bytes_remaining -= lha->strm.total_in;
2103 strm->total_in += avail_in - strm->avail_in;
H A Darchive_read_support_format_7zip.c289 int64_t total_in; member in struct:_7zip::__anon2062
993 zip->ppstream.total_in++;
1155 zip->lzstream.total_in = 0;
1218 zip->stream.total_in = 0;
1265 zip->ppstream.total_in = 0;
H A Darchive_write_set_format_iso9660.c7380 iso9660->zisofs.stream.total_in = 0;
7610 avail = ZF_BLOCK_SIZE - zstrm->total_in;
7644 avail + zstrm->total_in == ZF_BLOCK_SIZE) {
7962 zisofs->stream.total_in = 0;
H A Darchive_read_support_format_xar.c1471 xar->stream.total_in = 0;
1558 xar->lzstream.total_in = 0;
H A Darchive_read_support_format_iso9660.c1581 zisofs->stream.total_in = 0;
/freebsd-12-stable/sys/contrib/zlib/
H A Dinflate.c126 strm->total_in = strm->total_out = state->total = 0;
1263 strm->total_in += in;
1404 unsigned long in, out; /* temporary to save total_in and total_out */
1432 strm->total_in += len;
1436 in = strm->total_in; out = strm->total_out;
1438 strm->total_in = in; strm->total_out = out;
H A Ddeflate.c479 strm->total_in = strm->total_out = 0;
1059 put_byte(s, (Byte)(strm->total_in & 0xff));
1060 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
1061 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
1062 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
1189 strm->total_in += len;
H A Dzlib.h89 uLong total_in; /* total number of input bytes read so far */ member in struct:z_stream_s
160 The fields total_in and total_out can be used for statistics or progress
161 reports. After compression, total_in holds the total size of the
342 so far (that is, total_in bytes). If a gzip stream is being generated, then
937 total_in which indicates where valid compressed data was found. In the
/freebsd-12-stable/sys/kern/
H A Dsubr_compressor.c200 s->gz_stream.total_in;
/freebsd-12-stable/usr.sbin/bhyve/
H A Drfb.c348 rc->zstream.total_in = 0;
439 rc->zstream.total_in = 0;
/freebsd-12-stable/crypto/openssh/
H A Dpacket.c616 (unsigned long long)stream->total_in,
618 stream->total_in == 0 ? 0.0 :
619 (double) stream->total_out / stream->total_in);
628 (unsigned long long)stream->total_in,
630 (double) stream->total_in / stream->total_out);
/freebsd-12-stable/sys/libkern/
H A Dzlib.c884 strm->total_in = strm->total_out = 0;
926 if (func != configuration_table[level].func && strm->total_in != 0) {
1234 strm->total_in += len;
3104 z->total_in = z->total_out = 0;
3198 #define NEXTBYTE (z->avail_in--,z->total_in++,*z->next_in++)
3379 uLong r, w; /* temporaries to save total_in and total_out */
3407 z->total_in += p - z->next_in;
3415 r = z->total_in; w = z->total_out;
3417 z->total_in = r; z->total_out = w;
3595 #define UPDIN {z->avail_in=n;z->total_in
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp593 stream.total_in = 0;
/freebsd-12-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctf.c1323 zstr.total_in, zstr.total_out, (caddr_t)zstr.next_in - cbuf);

Completed in 286 milliseconds

12