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

12

/freebsd-12-stable/sys/contrib/zstd/zlibWrapper/examples/
H A Dfitblk.c91 LOG_FITBLK("partcompress1 avail_in=%d total_in=%d avail_out=%d total_out=%d\n", (int)def->avail_in, (int)def->total_in, (int)def->avail_out, (int)def->total_out);
93 LOG_FITBLK("partcompress2 ret=%d avail_in=%d total_in=%d avail_out=%d total_out=%d\n", ret, (int)def->avail_in, (int)def->total_in, (int)def->avail_out, (int)def->total_out);
114 LOG_FITBLK("recompress1inflate avail_in=%d total_in=%d avail_out=%d total_out=%d\n", (int)inf->avail_in, (int)inf->total_in, (int)inf->avail_out, (int)inf->total_out);
116 LOG_FITBLK("recompress2inflate avail_in=%d total_in=%d avail_out=%d total_out=%d\n", (int)inf->avail_in, (int)inf->total_in, (int)inf->avail_out, (int)inf->total_out);
127 LOG_FITBLK("recompress1deflate avail_in=%d total_in=%d avail_out=%d total_out=%d\n", (int)def->avail_in, (int)def->total_in, (in
[all...]
H A Dfitblk_original.c231 size - have, size, def.total_in);
H A Dzwrapbench.c318 def.total_in = 0;
349 def.total_in = 0;
454 inf.total_in = 0;
486 inf.total_in = 0;
H A Dexample.c243 while (c_stream.total_in != len && c_stream.total_out < comprLen) {
283 while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) {
H A Dexample_original.c235 while (c_stream.total_in != len && c_stream.total_out < comprLen) {
275 while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) {
/freebsd-12-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;
780 header_unpacksize = zip->stream.total_in;
1654 lastrm->total_in += bytes;
1695 strm->total_in = (uLong)lastrm->total_in;
1728 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_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;
2412 strm->total_in += avail_in - strm->avail_in;
H A Darchive_write_add_filter_lz4.c66 int64_t total_in; member in struct:private_data
306 data->total_in += length;
/freebsd-12-stable/sys/dev/random/
H A Dunit_test.c108 while (c_stream.total_in != len && c_stream.total_out < (len*2u + 512u)) {
111 printf("deflate progress: len = %zd total_in = %lu total_out = %lu\n", len, c_stream.total_in, c_stream.total_out);
119 printf("deflate final: len = %zd total_in = %lu total_out = %lu\n", len, c_stream.total_in, c_stream.total_out);
/freebsd-12-stable/sys/contrib/zstd/zlibWrapper/
H A Dzstd_zlibwrapper.c93 unsigned long long totalInBytes; /* we need it as strm->total_in can be reset by user */
203 strm->total_in = 0;
235 strm->total_in = 0;
287 LOG_WRAPPERC("- deflate1 flush=%d avail_in=%d avail_out=%d total_in=%d total_out=%d\n",
288 (int)flush, (int)strm->avail_in, (int)strm->avail_out, (int)strm->total_in, (int)strm->total_out);
318 LOG_WRAPPERC("- deflate2 flush=%d avail_in=%d avail_out=%d total_in=%d total_out=%d\n", (int)flush, (int)strm->avail_in, (int)strm->avail_out, (int)strm->total_in, (int)strm->total_out);
333 strm->total_in += zwc->inBuffer.pos;
360 LOG_WRAPPERC("Z_STREAM_END2 strm->total_in=%d strm->avail_out=%d strm->total_out=%d\n",
361 (int)strm->total_in, (in
[all...]
/freebsd-12-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:__anon7540
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-12-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-12-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-12-stable/sys/sys/
H A Dzlib.h283 uLong total_in; /* total nb of input bytes read so far */ member in struct:z_stream_s
325 The fields total_in and total_out can be used for statistics or
326 progress reports. After compression, total_in holds the total size of
804 case, the application may save the current current value of total_in which
/freebsd-12-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-12-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) {

Completed in 208 milliseconds

12