/openbsd/gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/t/ |
H A D | 07bufsize.t | 64 is $x->total_in(), 0, " total_in == 0" ; 79 is $x->total_in(), length $hello, " length total_in" ; 93 is $k->total_in(), 0, " total_in == 0" ; 108 is $k->total_in(), length $out, " length total_in ok" ;
|
H A D | 19nonpv.t | 89 is $x->total_in(), 0, "total_in() == 0" ; 104 is $x->total_in(), length $hello, "total_in ok" ; 113 is $k->total_in(), 0, "total_in() == 0" ; 125 is $k->total_in(), $Alen, "total_in ok" ;
|
H A D | 09limitoutput.t | 63 is $k->total_in(), 0, " total_in == 0" ; 85 is $k->total_in(), length $out, " length total_in ok" ;
|
H A D | 02zlib.t | 111 is $x->total_in(), 0, "total_in() == 0" ; 130 is $x->total_in(), length $hello, "total_in ok" ; 141 is $k->total_in(), 0, "total_in() == 0" ; 157 is $k->total_in(), length $Answer, "total_in ok" ;
|
/openbsd/usr.bin/compress/ |
H A D | nullopen.c | 39 off_t total_in; member 62 s->total_in = s->total_out = 0; in null_ropen() 81 s->total_in = s->total_out = 0; in null_wopen() 101 info->total_in = (off_t) s->total_in; in null_close()
|
H A D | gzopen.c | 268 old_total_in = s->z_stream.total_in; in gz_read() 316 s->z_total_in += (uLong)(s->z_stream.total_in - in gz_read() 327 s->z_total_in += (uLong)(s->z_stream.total_in - old_total_in); in gz_read() 331 s->z_total_in += (uLong)(s->z_stream.total_in - old_total_in); in gz_read() 508 if ((err = put_int32 (s, s->z_stream.total_in)) == Z_OK) in gz_close() 528 info->total_in = s->z_total_in; in gz_close()
|
H A D | main.c | 628 if (!force && !cat && (info.hlen >= info.total_in || in docompress() 629 info.total_out >= info.total_in - info.hlen)) { in docompress() 640 verbose_info(out, info.total_out, info.total_in, info.hlen); in docompress() 778 verbose_info(out, info.total_in, info.total_out, in dodecompress() 932 (long long)(info->total_in + info->hlen), in list_stats() 934 ((long long)info->total_out - (long long)info->total_in) * in list_stats() 936 compressed_total += info->total_in; in list_stats()
|
H A D | compress.h | 36 u_int64_t total_in; /* # bytes in */ member
|
H A D | zipopen.c | 344 uLong prev_total_in = s->z_stream.total_in; in zip_read() 347 s->z_total_in += s->z_stream.total_in - prev_total_in; in zip_read() 430 info->total_in = s->z_total_in; in zip_close()
|
/openbsd/gnu/usr.bin/cvs/src/ |
H A D | zlib.c | 516 if (crc != (buf[zstr.total_in + 10] 517 + (buf[zstr.total_in + 11] << 8) 518 + (buf[zstr.total_in + 12] << 16) 519 + (buf[zstr.total_in + 13] << 24))) 525 if (zstr.total_out != (buf[zstr.total_in + 14] 526 + (buf[zstr.total_in + 15] << 8) 527 + (buf[zstr.total_in + 16] << 16) 528 + (buf[zstr.total_in + 17] << 24))) 649 *(*buf + zstr.total_out + 14) = zstr.total_in & 0xff; 650 *(*buf + zstr.total_out + 15) = (zstr.total_in >> 8) & 0xff; [all …]
|
/openbsd/sys/lib/libsa/ |
H A D | cread.c | 301 s->stream.total_in += (unsigned long)len; in read() 340 unsigned long total_in = s->stream.total_in; in read() local 344 s->stream.total_in = total_in; in read()
|
/openbsd/sbin/savecore/ |
H A D | compress.h | 36 u_int64_t total_in; /* # bytes in */ member
|
H A D | zopen.c | 333 info->total_in = (off_t)zs->zs_in_count; in z_close()
|
/openbsd/gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/ |
H A D | Zlib.xs | 624 printf(" total_in %ld\n", s->stream.total_in); 1636 total_in(s) 1639 RETVAL = s->stream.total_in ; 1994 total_in(s) 1997 RETVAL = s->stream.total_in ; 2156 s->lastBlockOffset = s->stream.total_in; 2163 s->window_lastoff = s->stream.total_in ; 2172 s->window_endOffset = s->stream.total_in ; 2331 s->stream.total_in = inf_s->stream.total_out ; in _createDeflateStream()
|
/openbsd/regress/lib/libz/ |
H A D | example.c | 181 while (c_stream.total_in != len && c_stream.total_out < comprLen) { in test_deflate() 219 while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) { in test_inflate()
|
/openbsd/sys/lib/libz/ |
H A D | inflate.c | 111 strm->total_in = strm->total_out = state->total = 0; in inflateResetKeep() 1338 strm->total_in += in; in inflate() 1492 strm->total_in += len; in inflateSync() 1501 in = strm->total_in; out = strm->total_out; in inflateSync() 1503 strm->total_in = in; strm->total_out = out; in inflateSync()
|
H A D | deflate.c | 232 strm->total_in += len; in read_buf() 638 strm->total_in = strm->total_out = 0; in deflateResetKeep() 1242 put_byte(s, (Byte)(strm->total_in & 0xff)); in deflate() 1243 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff)); in deflate() 1244 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff)); in deflate() 1245 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff)); in deflate()
|
/openbsd/lib/libz/ |
H A D | inflate.c | 111 strm->total_in = strm->total_out = state->total = 0; in inflateResetKeep() 1339 strm->total_in += in; in inflate() 1493 strm->total_in += len; in inflateSync() 1502 in = strm->total_in; out = strm->total_out; in inflateSync() 1504 strm->total_in = in; strm->total_out = out; in inflateSync()
|
H A D | deflate.c | 232 strm->total_in += len; in read_buf() 638 strm->total_in = strm->total_out = 0; in deflateResetKeep() 1242 put_byte(s, (Byte)(strm->total_in & 0xff)); in deflate() 1243 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff)); in deflate() 1244 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff)); in deflate() 1245 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff)); in deflate()
|
H A D | zlib.h | 89 uLong total_in; /* total number of input bytes read so far */ member
|
/openbsd/gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/zlib-src/ |
H A D | inflate.c | 111 strm->total_in = strm->total_out = state->total = 0; in inflateResetKeep() 1252 strm->total_in += in; in inflate() 1406 strm->total_in += len; in inflateSync() 1415 in = strm->total_in; out = strm->total_out; in inflateSync() 1417 strm->total_in = in; strm->total_out = out; in inflateSync()
|
H A D | deflate.c | 236 strm->total_in += len; in read_buf() 642 strm->total_in = strm->total_out = 0; in deflateResetKeep() 1238 put_byte(s, (Byte)(strm->total_in & 0xff)); in deflate() 1239 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff)); in deflate() 1240 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff)); in deflate() 1241 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff)); in deflate()
|
/openbsd/gnu/usr.bin/perl/cpan/IO-Compress/t/ |
H A D | cz-03zlib-v1.t | 201 ok $x->total_in() == 0 ; 216 ok $x->total_in() == length $hello ; 227 ok $k->total_in() == 0 ; 243 is $k->total_in(), length $Answer ;
|
/openbsd/usr.bin/ssh/ |
H A D | packet.c | 683 (unsigned long long)stream->total_in, in ssh_packet_close_internal() 685 stream->total_in == 0 ? 0.0 : in ssh_packet_close_internal() 686 (double) stream->total_out / stream->total_in); in ssh_packet_close_internal() 695 (unsigned long long)stream->total_in, in ssh_packet_close_internal() 697 (double) stream->total_in / stream->total_out); in ssh_packet_close_internal()
|
/openbsd/gnu/usr.bin/perl/cpan/IO-Compress/lib/Compress/ |
H A D | Zlib.pm | 496 pack("V V", $x->crc32(), $x->total_in());
|