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

12

/freebsd-10.0-release/crypto/openssh/
H A Dcompress.c65 (unsigned long long)outgoing_stream.total_in,
67 outgoing_stream.total_in == 0 ? 0.0 :
68 (double) outgoing_stream.total_out / outgoing_stream.total_in);
71 (unsigned long long)incoming_stream.total_in,
73 (double) incoming_stream.total_in / incoming_stream.total_out);
/freebsd-10.0-release/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
286 data->total_in += length;
321 trailer[4] = (uint8_t)(data->total_in)&0xff;
322 trailer[5] = (uint8_t)(data->total_in >> 8)&0xff;
323 trailer[6] = (uint8_t)(data->total_in >> 16)&0xff;
324 trailer[7] = (uint8_t)(data->total_in >> 24)&0xff;
H A Darchive_write_set_format_7zip.c104 uint64_t total_in; member in struct:la_zstream
561 if (run == ARCHIVE_Z_FINISH && zip->stream.total_in == 0 && s == 0)
640 zip->total_bytes_compressed += zip->stream.total_in;
731 data_unpacksize = zip->stream.total_in;
778 header_unpacksize = zip->stream.total_in;
1648 lastrm->total_in += bytes;
1689 strm->total_in = (uLong)lastrm->total_in;
1722 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
247 data->total_in += length;
H A Darchive_write_set_format_xar.c147 uint64_t total_in; member in struct:la_zstream
1689 xar->stream.total_in = 0;
2599 strm->total_in = (uLong)lastrm->total_in;
2632 strm->total_in = (uLong)lastrm->total_in;
2640 lastrm->total_in = strm->total_in;
2696 strm->total_in_lo32 = (uint32_t)(lastrm->total_in & 0xffffffff);
2697 strm->total_in_hi32 = (uint32_t)(lastrm->total_in >> 3
[all...]
H A Darchive_write_add_filter_xz.c106 int64_t total_in; member in struct:private_data
395 data->total_in += length;
427 archive_le64enc(data->compressed+4, data->total_in);
H A Darchive_read_support_format_zip.c640 zip->stream.total_in = 0;
664 bytes_used = zip->stream.total_in;
1451 zip->stream.total_in = 0;
1474 bytes_avail = zip->stream.total_in;
H A Darchive_read_support_format_cab.c147 int64_t total_in; member in struct:lzx_stream
1438 cab->stream.total_in = 0;
1491 cab->stream.total_in = 0;
1521 cab->stream.total_in += mszip;
1535 cfdata->unconsumed = cab->stream.total_in;
1699 cab->xstrm.total_in = 0;
1712 cfdata->unconsumed = cab->xstrm.total_in;
2416 strm->total_in += avail_in - strm->avail_in;
H A Darchive_read_support_format_lha.c144 int64_t total_in; member in struct:lzh_stream
1536 lha->strm.total_in = 0;
1554 lha->entry_unconsumed = lha->strm.total_in;
1555 lha->entry_bytes_remaining -= lha->strm.total_in;
2007 strm->total_in += avail_in - strm->avail_in;
H A Darchive_read_support_format_7zip.c284 int64_t total_in; member in struct:_7zip::__anon1563
917 zip->ppstream.total_in++;
1081 zip->lzstream.total_in = 0;
1144 zip->stream.total_in = 0;
1191 zip->ppstream.total_in = 0;
/freebsd-10.0-release/contrib/xz/src/liblzma/api/lzma/
H A Dbase.h432 * - The initialization functions always set strm->total_in and
449 * Application may modify the values of total_in and total_out as it wants.
456 uint64_t total_in; /**< Total number of bytes read by liblzma. */ member in struct:__anon4660
/freebsd-10.0-release/contrib/xz/src/liblzma/common/
H A Dcommon.c166 strm->total_in = 0;
260 strm->total_in += in_pos;
/freebsd-10.0-release/contrib/xz/src/xz/
H A Dcoder.c599 strm.total_in += strm.avail_in;
600 strm.total_out = strm.total_in;
H A Dmessage.c535 *in_pos = progress_strm->total_in;
539 *uncompressed_pos = progress_strm->total_in;
541 *compressed_pos = progress_strm->total_in;
/freebsd-10.0-release/sys/kern/
H A Dkern_gzio.c373 (long long)s->crc, (long long)s->stream.total_in);
377 putU32 (s, (uint32_t) s->stream.total_in);
/freebsd-10.0-release/sys/net/
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
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-10.0-release/lib/libz/
H A Ddeflate.c402 strm->total_in = strm->total_out = 0;
513 strm->total_in != 0) {
959 put_byte(s, (Byte)(strm->total_in & 0xff));
960 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
961 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
962 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
1098 strm->total_in += len;
H A Dinflate.c111 strm->total_in = strm->total_out = state->total = 0;
1240 strm->total_in += in;
1381 unsigned long in, out; /* temporary to save total_in and total_out */
1409 strm->total_in += len;
1413 in = strm->total_in; out = strm->total_out;
1415 strm->total_in = in; strm->total_out = out;
H A Dzlib.h88 uLong total_in; /* total number of input bytes read so far */ member in struct:z_stream_s
156 The fields total_in and total_out can be used for statistics or progress
157 reports. After compression, total_in holds the total size of the
335 so far (that is, total_in bytes).
871 total_in which indicates where valid compressed data was found. In the
/freebsd-10.0-release/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-10.0-release/lib/libz/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) {

Completed in 373 milliseconds

12