Searched refs:total_in (Results 1 - 12 of 12) sorted by relevance
| /illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/ |
| H A D | zlib.h | 162 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 D | zlib.c | 672 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;}
|
| /illumos-gate/usr/src/uts/common/zmod/ |
| H A D | deflate.c | 373 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 D | inflate.c | 117 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 D | zlib.h | 87 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
|
| /illumos-gate/usr/src/boot/lib/libz/ |
| H A D | deflate.c | 402 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 D | inflate.c | 111 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 D | zlib.h | 88 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
|
| /illumos-gate/usr/src/boot/lib/libz/test/ |
| H A D | example.c | 218 while (c_stream.total_in != len && c_stream.total_out < comprLen) { 258 while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) {
|
| /illumos-gate/usr/src/uts/common/io/ppp/spppcomp/ |
| H A D | zlib.h | 407 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 D | zlib.c | 1005 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...] |
| /illumos-gate/usr/src/tools/ctf/cvt/ |
| H A D | ctf.c | 1223 zstr.total_in, zstr.total_out, (caddr_t)zstr.next_in - cbuf);
|
Completed in 1124 milliseconds