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

/opensolaris-onvv-gate/usr/src/cmd/ssh/libssh/common/
H A Dcompress.c62 outgoing_stream.total_in, outgoing_stream.total_out,
63 outgoing_stream.total_in == 0 ? 0.0 :
64 (double) outgoing_stream.total_out / outgoing_stream.total_in);
66 incoming_stream.total_out, incoming_stream.total_in,
68 (double) incoming_stream.total_in / incoming_stream.total_out);
/opensolaris-onvv-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.h162 uLong total_in; /* total nb of input bytes read so far */ member in struct:z_stream_s
201 The fields total_in and total_out can be used for statistics or
202 progress reports. After compression, total_in holds the total size of
577 case, the application may save the current current value of total_in which
H A Dzlib.c672 strm->total_in = strm->total_out = 0;
894 strm->total_in += len;
2777 z->total_in = z->total_out = 0;
2856 #define NEXTBYTE (z->avail_in--,z->total_in++,*z->next_in++)
2990 uLong r, w; /* temporaries to save total_in and total_out */
3018 z->total_in += p - z->next_in;
3026 r = z->total_in; w = z->total_out;
3028 z->total_in = r; z->total_out = w;
3099 #define UPDIN {z->avail_in=n;z->total_in+=p-z->next_in;z->next_in=p;}
/opensolaris-onvv-gate/usr/src/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
/opensolaris-onvv-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.h407 uLong total_in; /* total nb of input bytes read so far */ member in struct:z_stream_s
453 * The fields total_in and total_out can be used for statistics or
454 * progress reports. After compression, total_in holds the total size
964 * current current value of total_in which indicates where valid
H A Dzlib.c1005 strm->total_in = strm->total_out = 0;
1052 if (func != configuration_table[level].func && strm->total_in != 0) {
1402 strm->total_in += len;
3638 z->total_in = z->total_out = 0;
3736 #define NEXTBYTE (z->avail_in--, z->total_in++, *z->next_in++)
3946 uLong r, w; /* temporaries to save total_in and total_out */
3985 z->total_in += p - z->next_in;
3993 r = z->total_in; w = z->total_out;
3995 z->total_in = r; z->total_out = w;
4201 #define UPDIN {z->avail_in = n; z->total_in
[all...]
/opensolaris-onvv-gate/usr/src/lib/libkmsagent/common/SOAP/
H A Dstdsoap2.cpp1064 { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Inflated %lu->%lu bytes\n", soap->d_stream->total_in, soap->d_stream->total_out));
1065 soap->z_ratio_in = (float)soap->d_stream->total_in / (float)soap->d_stream->total_out;
1187 { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Inflated total %lu->%lu bytes\n", soap->d_stream->total_in, soap->d_stream->total_out));
1188 soap->z_ratio_in = (float)soap->d_stream->total_in / (float)soap->d_stream->total_out;
7694 DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Deflated total %lu->%lu bytes\n", soap->d_stream->total_in, soap->d_stream->total_out));
7695 soap->z_ratio_out = (float)soap->d_stream->total_out / (float)soap->d_stream->total_in;
7708 soap->z_buf[4] = soap->d_stream->total_in & 0xFF;
7709 soap->z_buf[5] = (soap->d_stream->total_in >> 8) & 0xFF;
7710 soap->z_buf[6] = (soap->d_stream->total_in >> 16) & 0xFF;
7711 soap->z_buf[7] = (soap->d_stream->total_in >> 2
[all...]
/opensolaris-onvv-gate/usr/src/tools/ctf/cvt/
H A Dctf.c1223 zstr.total_in, zstr.total_out, (caddr_t)zstr.next_in - cbuf);

Completed in 102 milliseconds