Lines Matching defs:Compress

2 package Compress::Raw::Zlib;
134 XSLoader::load('Compress::Raw::Zlib', $XS_VERSION);
140 bootstrap Compress::Raw::Zlib $XS_VERSION ;
168 my $p = new Compress::Raw::Zlib::Parameters() ;
176 sub Compress::Raw::Zlib::Parameters::new
185 return bless $obj, 'Compress::Raw::Zlib::Parameters' ;
188 sub Compress::Raw::Zlib::Parameters::setError
204 sub Compress::Raw::Zlib::Parameters::parse
295 sub Compress::Raw::Zlib::Parameters::_checkType
362 sub Compress::Raw::Zlib::Parameters::parsed
370 sub Compress::Raw::Zlib::Parameters::value
400 sub Compress::Raw::Zlib::Deflate::new
405 croak "Compress::Raw::Zlib::Deflate::new: Bufsize must be >= 1, you specified " .
429 sub Compress::Raw::Zlib::deflateStream::STORABLE_freeze
435 sub Compress::Raw::Zlib::deflateStream::STORABLE_thaw
455 sub Compress::Raw::Zlib::Inflate::new
460 croak "Compress::Raw::Zlib::Inflate::new: Bufsize must be >= 1, you specified " .
480 sub Compress::Raw::Zlib::inflateStream::STORABLE_freeze
486 sub Compress::Raw::Zlib::inflateStream::STORABLE_thaw
492 sub Compress::Raw::Zlib::InflateScan::new
506 croak "Compress::Raw::Zlib::InflateScan::new: Bufsize must be >= 1, you specified " .
520 sub Compress::Raw::Zlib::inflateScanStream::createDeflateStream
537 croak "Compress::Raw::Zlib::InflateScan::createDeflateStream: Bufsize must be >= 1, you specified " .
557 sub Compress::Raw::Zlib::inflateScanStream::inflate
574 sub Compress::Raw::Zlib::deflateStream::deflateParams
584 croak "Compress::Raw::Zlib::deflateParams needs Level and/or Strategy"
588 croak "Compress::Raw::Zlib::Inflate::deflateParams: Bufsize must be >= 1, you specified " .
609 Compress::Raw::Zlib - Low-Level Interface to zlib or zlib-ng compression library
613 use Compress::Raw::Zlib ;
615 ($d, $status) = new Compress::Raw::Zlib::Deflate( [OPT] ) ;
631 ($i, $status) = new Compress::Raw::Zlib::Inflate( [OPT] ) ;
649 my $version = Compress::Raw::Zlib::zlib_version();
650 my $flags = Compress::Raw::Zlib::zlibCompileFlags();
659 The I<Compress::Raw::Zlib> module provides a Perl interface to the I<zlib> or I<zlib-ng>
665 =head1 Compress::Raw::Zlib::Deflate
672 =head2 B<($d, $status) = new Compress::Raw::Zlib::Deflate( [OPT] ) >
743 When a dictionary is specified I<Compress::Raw::Zlib> will automatically
789 Here is an example of using the C<Compress::Raw::Zlib::Deflate> optional
793 my $d = new Compress::Raw::Zlib::Deflate ( -Bufsize => 300,
938 use Compress::Raw::Zlib ;
942 my $x = new Compress::Raw::Zlib::Deflate
963 =head1 Compress::Raw::Zlib::Inflate
970 =head2 B< ($i, $status) = new Compress::Raw::Zlib::Inflate( [OPT] ) >
1091 my ($i, $status) = new Compress::Raw::Zlib::Inflate( -Bufsize => 300 ) ;
1105 C<Compress::Raw::Zlib::Inflate> object is created, the C<$input> parameter
1178 was created by calling C<Compress::Deflate::flush> with C<Z_FULL_FLUSH>.
1229 use Compress::Raw::Zlib;
1231 my $x = new Compress::Raw::Zlib::Inflate()
1262 use Compress::Raw::Zlib;
1264 my $x = new Compress::Raw::Zlib::Inflate(LimitOutput => 1)
1316 =head2 my $version = Compress::Raw::Zlib::zlib_version();
1323 =head2 my $version = Compress::Raw::Zlib::zlibng_version();
1328 =head2 my $flags = Compress::Raw::Zlib::zlibCompileFlags();
1344 These function can use used to check if C<Compress::Raw::Zlib> was been built with I<zlib> or I<zlib-ng>.
1346 The function C<is_zlib_native> returns true if C<Compress::Raw::Zlib> was built with I<zlib>.
1347 The function C<is_zlibng> returns true if C<Compress::Raw::Zlib> was built with I<zlib-ng>.
1366 use Compress::Raw::Zlib;
1368 my $x = new Compress::Raw::Zlib::Inflate()
1411 and it's predecessor, C<Compress::Zlib>, have used it for over 10 years
1433 use Compress::Raw::Zlib;
1435 my $x = new Compress::Raw::Zlib::Inflate(LimitOutput => 1)
1495 C<Archive::Zip::SimpleZip>, C<IO::Compress::Zip> and
1572 By default C<Compress::Raw::Zlib> will build with a private copy of version
1588 option with C<IO::Compress::Gzip>, C<IO::Compress::Deflate> and
1589 C<IO::Compress::RawDeflate>.
1596 of I<Compress::Raw::Zlib>.
1601 L<https://github.com/pmqs/Compress-Raw-Zlib/issues> (preferred) or
1602 L<https://rt.cpan.org/Public/Dist/Display.html?Name=Compress-Raw-Zlib>.
1606 L<Compress::Zlib>, L<IO::Compress::Gzip>, L<IO::Uncompress::Gunzip>, L<IO::Compress::Deflate>, L<IO::Uncompress::Inflate>, L<IO::Compress::RawDeflate>, L<IO::Uncompress::RawInflate>, L<IO::Compress::Bzip2>, L<IO::Uncompress::Bunzip2>, L<IO::Compress::Lzma>, L<IO::Uncompress::UnLzma>, L<IO::Compress::Xz>, L<IO::Uncompress::UnXz>, L<IO::Compress::Lzip>, L<IO::Uncompress::UnLzip>, L<IO::Compress::Lzop>, L<IO::Uncompress::UnLzop>, L<IO::Compress::Lzf>, L<IO::Uncompress::UnLzf>, L<IO::Compress::Zstd>, L<IO::Uncompress::UnZstd>, L<IO::Uncompress::AnyInflate>, L<IO::Uncompress::AnyUncompress>
1608 L<IO::Compress::FAQ|IO::Compress::FAQ>