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

12

/macosx-10.10/OpenSSH-189/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);
/macosx-10.10/OpenSSL098-52/src/demos/tunala/
H A Dbuffer.c8 buf->total_in = buf->total_out = 0;
31 return buf->total_in; }
50 buf->total_in += added;
97 buf->total_in += toread;
159 buf->total_in += ret;
187 buf->total_in += ret;
H A Dtunala.h90 unsigned long total_in, total_out; member in struct:_buffer_t
/macosx-10.10/zlib-55/zlib/contrib/testzlib/
H A Dtestzlib.c206 long all_read_before = zcpr.total_in;
210 lOrigDone += (zcpr.total_in-all_read_before);
211 lOrigToDo -= (zcpr.total_in-all_read_before);
247 long all_read_before = zcpr.total_in;
251 lOrigDone += (zcpr.total_in-all_read_before);
252 lOrigToDo -= (zcpr.total_in-all_read_before);
/macosx-10.10/libarchive-30/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
266 state->total_in += length;
305 (state->total_in % a->bytes_per_block);
310 state->total_in += state->stream.avail_in;
/macosx-10.10/zlib-55/zlib/contrib/dotzlib/DotZLib/
H A DInflater.cs75 inputIndex += (int)_ztream.total_in;
H A DCodecBase.cs172 _ztream.total_in = 0;
H A DDeflater.cs76 inputIndex += (int)_ztream.total_in;
H A DDotZLib.cs34 public uint total_in; field in struct:DotZLib.ZStream
/macosx-10.10/zlib-55/zlib/examples/
H A Dgzappend.c365 /* set up deflate stream with window, crc, total_in, and leftover bits */
370 strm->total_in = tot;
441 out[4] = (unsigned char)(strm->total_in);
442 out[5] = (unsigned char)(strm->total_in >> 8);
443 out[6] = (unsigned char)(strm->total_in >> 16);
444 out[7] = (unsigned char)(strm->total_in >> 24);
H A Dfitblk.c231 size - have, size, def.total_in);
/macosx-10.10/ppp-786.1.1/Helpers/pppdump/
H A Dzlib.h184 uLong total_in; /* total nb of input bytes read so far */ member in struct:z_stream_s
223 The fields total_in and total_out can be used for statistics or
224 progress reports. After compression, total_in holds the total size of
599 case, the application may save the current current value of total_in which
/macosx-10.10/tcl-105/tcl_ext/trf/trf/compat/
H A Dbzlib.h87 unsigned int total_in; member in struct:__anon13307
H A Dzlib.h71 uLong total_in; /* total nb of input bytes read so far */ member in struct:z_stream_s
116 The fields total_in and total_out can be used for statistics or
117 progress reports. After compression, total_in holds the total size of
263 so far (that is, total_in bytes).
581 case, the application may save the current current value of total_in which
/macosx-10.10/apache-793/httpd/modules/filters/
H A Dmod_deflate.c757 putLong((unsigned char *)&buf[4], ctx->stream.total_in);
764 ctx->stream.total_in, ctx->stream.total_out, r->uri);
769 (ctx->stream.total_in > 0)
771 ctx->stream.total_in)
777 (ctx->stream.total_in > 0)
785 (ctx->stream.total_in > 0)
789 / ctx->stream.total_in))
1103 ctx->stream.total_in, ctx->stream.total_out,
1313 ctx->stream.total_in, ctx->stream.total_out, r->uri);
/macosx-10.10/xar-254/xar/lib/
H A Dio.c696 stream->total_in = 0;
736 if( state->fsize == stream->total_in ) {
740 if( (state->fsize - stream->total_in) < bsize )
741 bsize = state->fsize - stream->total_in;
757 stream->total_in += r;
/macosx-10.10/zlib-55/zlib/contrib/delphi/
H A DZLib.pas26 total_in: Longint; // total nb of input bytes read so far
467 Result := FZRec.total_in
474 if FZRec.total_in = 0 then
477 Result := (1.0 - (FZRec.total_out / FZRec.total_in)) * 100.0;
/macosx-10.10/rsync-45/rsync/zlib/
H A Ddeflate.c369 strm->total_in = strm->total_out = 0;
440 if (func != configuration_table[level].func && strm->total_in != 0) {
841 put_byte(s, (Byte)(strm->total_in & 0xff));
842 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
843 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
844 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
980 strm->total_in += len;
H A Dinflate.c110 strm->total_in = strm->total_out = state->total = 0;
1142 strm->total_in += in;
1266 unsigned long in, out; /* temporary to save total_in and total_out */
1294 strm->total_in += len;
1298 in = strm->total_in; out = strm->total_out;
1300 strm->total_in = in; strm->total_out = out;
/macosx-10.10/sudo-73/src/zlib/
H A Ddeflate.c402 strm->total_in = strm->total_out = 0;
513 strm->total_in != 0) {
957 put_byte(s, (Byte)(strm->total_in & 0xff));
958 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
959 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
960 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
1096 strm->total_in += len;
/macosx-10.10/xnu-2782.1.97/libkern/zlib/
H A Ddeflate.c396 strm->total_in = strm->total_out = 0;
467 if (func != configuration_table[level].func && strm->total_in != 0) {
868 put_byte(s, (Byte)(strm->total_in & 0xff));
869 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
870 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
871 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
1007 strm->total_in += len;
/macosx-10.10/zlib-55/zlib/
H A Ddeflate.c363 strm->total_in = strm->total_out = 0;
435 strm->total_in != 0) {
875 put_byte(s, (Byte)(strm->total_in & 0xff));
876 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
877 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
878 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
1014 strm->total_in += len;

Completed in 284 milliseconds

12