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

12

/freebsd-9.3-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-9.3-release/crypto/openssl/demos/tunala/
H A Dbuffer.c8 buf->total_in = buf->total_out = 0;
50 return buf->total_in;
75 buf->total_in += added;
122 buf->total_in += toread;
190 buf->total_in += ret;
218 buf->total_in += ret;
H A Dtunala.h95 unsigned long total_in, total_out; member in struct:_buffer_t
/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_read_support_compression_rpm.c41 int64_t total_in; member in struct:rpm
187 if (rpm->total_in + avail_in < RPM_LEAD_SIZE)
190 n = RPM_LEAD_SIZE - rpm->total_in;
263 rpm->total_in += used;
271 rpm->total_in += used;
H A Darchive_write_set_compression_gzip.c61 int64_t total_in; member in struct:private_data
272 state->total_in += length;
311 (state->total_in % a->bytes_per_block);
318 state->total_in += state->stream.avail_in;
335 trailer[4] = (state->total_in)&0xff;
336 trailer[5] = (state->total_in >> 8)&0xff;
337 trailer[6] = (state->total_in >> 16)&0xff;
338 trailer[7] = (state->total_in >> 24)&0xff;
H A Darchive_write_set_compression_bzip2.c61 int64_t total_in; member in struct:private_data
233 state->total_in += length;
273 (state->total_in % a->bytes_per_block);
278 state->total_in += state->stream.avail_in;
H A Darchive_write_set_compression_xz.c72 int64_t total_in; member in struct:private_data
267 state->total_in += length;
306 (state->total_in % a->bytes_per_block);
311 state->total_in += state->stream.avail_in;
H A Darchive_read_support_format_zip.c748 zip->stream.total_in = 0;
771 bytes_avail = zip->stream.total_in;
H A Darchive_read_support_format_xar.c1324 xar->stream.total_in = 0;
1404 xar->lzstream.total_in = 0;
1432 xar->lzstream.total_in = 0;
/freebsd-9.3-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:__anon4470
/freebsd-9.3-release/contrib/cvs/src/
H A Dzlib.c575 pos += zstr.total_in;
742 *zstr.next_out++ = (unsigned char)(zstr.total_in & 0xff);
743 *zstr.next_out++ = (unsigned char)((zstr.total_in >> 8) & 0xff);
744 *zstr.next_out++ = (unsigned char)((zstr.total_in >> 16) & 0xff);
745 *zstr.next_out++ = (unsigned char)((zstr.total_in >> 24) & 0xff);
/freebsd-9.3-release/contrib/xz/src/liblzma/common/
H A Dcommon.c166 strm->total_in = 0;
260 strm->total_in += in_pos;
/freebsd-9.3-release/contrib/xz/src/xz/
H A Dcoder.c606 strm.total_in += strm.avail_in;
607 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-9.3-release/sys/kern/
H A Dkern_gzio.c379 (long long)s->crc, (long long)s->stream.total_in);
383 putU32 (s, (uint32_t) s->stream.total_in);
/freebsd-9.3-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.c877 strm->total_in = strm->total_out = 0;
919 if (func != configuration_table[level].func && strm->total_in != 0) {
1227 strm->total_in += len;
3097 z->total_in = z->total_out = 0;
3191 #define NEXTBYTE (z->avail_in--,z->total_in++,*z->next_in++)
3372 uLong r, w; /* temporaries to save total_in and total_out */
3400 z->total_in += p - z->next_in;
3408 r = z->total_in; w = z->total_out;
3410 z->total_in = r; z->total_out = w;
3588 #define UPDIN {z->avail_in=n;z->total_in
[all...]
/freebsd-9.3-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-9.3-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-9.3-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) {
/freebsd-9.3-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctf.c1226 zstr.total_in, zstr.total_out, (caddr_t)zstr.next_in - cbuf);

Completed in 342 milliseconds

12