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

12

/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_filter_rpm.c41 int64_t total_in; member in struct:rpm
189 if (rpm->total_in + avail_in < RPM_LEAD_SIZE)
192 n = (size_t)(RPM_LEAD_SIZE - rpm->total_in);
265 rpm->total_in += used;
273 rpm->total_in += used;
H A Darchive_write_add_filter_gzip.c65 int64_t total_in; member in struct:private_data
287 data->total_in += length;
322 trailer[4] = (uint8_t)(data->total_in)&0xff;
323 trailer[5] = (uint8_t)(data->total_in >> 8)&0xff;
324 trailer[6] = (uint8_t)(data->total_in >> 16)&0xff;
325 trailer[7] = (uint8_t)(data->total_in >> 24)&0xff;
H A Darchive_write_set_format_7zip.c105 uint64_t total_in; member in struct:la_zstream
563 if (run == ARCHIVE_Z_FINISH && zip->stream.total_in == 0 && s == 0)
642 zip->total_bytes_compressed += zip->stream.total_in;
733 data_unpacksize = zip->stream.total_in;
785 header_unpacksize = zip->stream.total_in;
1659 lastrm->total_in += bytes;
1700 strm->total_in = (uLong)lastrm->total_in;
1733 strm->total_in = (uLong)lastrm->total_in;
[all...]
H A Darchive_write_add_filter_bzip2.c62 int64_t total_in; member in struct:private_data
243 data->total_in += length;
H A Darchive_write_set_format_xar.c147 uint64_t total_in; member in struct:la_zstream
1746 xar->stream.total_in = 0;
2660 strm->total_in = (uLong)lastrm->total_in;
2693 strm->total_in = (uLong)lastrm->total_in;
2701 lastrm->total_in = strm->total_in;
2757 strm->total_in_lo32 = (uint32_t)(lastrm->total_in & 0xffffffff);
2758 strm->total_in_hi32 = (uint32_t)(lastrm->total_in >> 3
[all...]
H A Darchive_write_add_filter_xz.c107 int64_t total_in; member in struct:private_data
426 data->total_in += length;
458 archive_le64enc(data->compressed+4, data->total_in);
H A Darchive_write_add_filter_zstd.c55 int64_t total_in; member in struct:private_data
269 data->total_in += length;
H A Darchive_write_add_filter_lz4.c66 int64_t total_in; member in struct:private_data
306 data->total_in += length;
H A Darchive_read_support_format_cab.c139 int64_t total_in; member in struct:lzx_stream
1432 cab->stream.total_in = 0;
1485 cab->stream.total_in = 0;
1517 cab->stream.total_in += mszip;
1531 cfdata->unconsumed = cab->stream.total_in;
1695 cab->xstrm.total_in = 0;
1708 cfdata->unconsumed = cab->xstrm.total_in;
2411 strm->total_in += avail_in - strm->avail_in;
H A Darchive_read_support_format_zip.c1694 zip->zipx_lzma_stream.total_in = 0;
1747 zip->zipx_lzma_stream.total_in = 0;
1773 if((int64_t) zip->zipx_lzma_stream.total_in !=
1786 to_consume = zip->zipx_lzma_stream.total_in;
1842 zip->zipx_lzma_stream.total_in = 0;
1866 if((int64_t) zip->zipx_lzma_stream.total_in !=
1887 to_consume = zip->zipx_lzma_stream.total_in;
2370 zip->stream.total_in = 0;
2393 bytes_avail = zip->stream.total_in;
3930 zip->stream.total_in
[all...]
/freebsd-11-stable/sys/dev/random/
H A Dunit_test.c107 while (c_stream.total_in != len && c_stream.total_out < (len*2u + 512u)) {
110 printf("deflate progress: len = %zd total_in = %lu total_out = %lu\n", len, c_stream.total_in, c_stream.total_out);
118 printf("deflate final: len = %zd total_in = %lu total_out = %lu\n", len, c_stream.total_in, c_stream.total_out);
/freebsd-11-stable/contrib/xz/src/liblzma/api/lzma/
H A Dbase.h463 * - The initialization functions always set strm->total_in and
480 * Application may modify the values of total_in and total_out as it wants.
488 uint64_t total_in; /**< Total number of bytes read by liblzma. */ member in struct:__anon4412
587 * strm->total_in and strm->total_out. In multi-threaded mode this is less
589 * buffered internally by liblzma. This makes total_in and total_out give
596 * strm->total_in and strm->total_out, respectively.
/freebsd-11-stable/contrib/xz/src/liblzma/common/
H A Dcommon.c189 strm->total_in = 0;
294 strm->total_in += in_pos;
377 *progress_in = strm->total_in;
/freebsd-11-stable/contrib/xz/src/xz/
H A Dcoder.c855 strm.total_in += strm.avail_in;
856 strm.total_out = strm.total_in;
H A Dmessage.c517 // In passthru mode the progress info is in total_in/out but
520 *in_pos = progress_strm->total_in;
527 assert(*in_pos <= progress_strm->total_in);
/freebsd-11-stable/sys/sys/
H A Dzlib.h281 uLong total_in; /* total nb of input bytes read so far */ member in struct:z_stream_s
323 The fields total_in and total_out can be used for statistics or
324 progress reports. After compression, total_in holds the total size of
802 case, the application may save the current current value of total_in which
/freebsd-11-stable/sys/kern/
H A Dkern_gzio.c193 s->gz_stream.total_in;
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Ddeflate.c373 strm->total_in = strm->total_out = 0;
444 if (func != configuration_table[level].func && strm->total_in != 0) {
845 put_byte(s, (Byte)(strm->total_in & 0xff));
846 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
847 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
848 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
984 strm->total_in += len;
H A Dinflate.c117 strm->total_in = strm->total_out = state->total = 0;
1169 strm->total_in += in;
1293 unsigned long in, out; /* temporary to save total_in and total_out */
1321 strm->total_in += len;
1325 in = strm->total_in; out = strm->total_out;
1327 strm->total_in = in; strm->total_out = out;
H A Dzlib.h87 uLong total_in; /* total nb of input bytes read so far */ member in struct:z_stream_s
155 The fields total_in and total_out can be used for statistics or
156 progress reports. After compression, total_in holds the total size of
312 so far (that is, total_in bytes).
769 case, the application may save the current current value of total_in which
/freebsd-11-stable/sys/contrib/zlib/test/
H A Dexample.c218 while (c_stream.total_in != len && c_stream.total_out < comprLen) {
258 while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) {
/freebsd-11-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.c476 strm->total_in = strm->total_out = 0;
1056 put_byte(s, (Byte)(strm->total_in & 0xff));
1057 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
1058 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
1059 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
1186 strm->total_in += len;
/freebsd-11-stable/usr.sbin/bhyve/
H A Drfb.c344 rc->zstream.total_in = 0;
435 rc->zstream.total_in = 0;
/freebsd-11-stable/crypto/openssh/
H A Dpacket.c603 (unsigned long long)stream->total_in,
605 stream->total_in == 0 ? 0.0 :
606 (double) stream->total_out / stream->total_in);
615 (unsigned long long)stream->total_in,
617 (double) stream->total_in / stream->total_out);

Completed in 397 milliseconds

12