Lines Matching defs:inflate
125 my $infDef = $writing ? 'deflate' : 'inflate';
162 if $self->[1] ne 'inflate';
266 if $self->[1] ne 'inflate';
358 $obj->inflate($in, $output) == Z_STREAM_END
454 sub inflate
458 my $status = $self->SUPER::inflate($_[0], $output) ;
585 $status = $x->inflate($string, $output);
642 $status = $i->inflate($input, $output [, $eof]) ;
1357 =head2 B<($out, $status) = $i-E<gt>inflate($buffer)>
1367 The C<$buffer> parameter is modified by C<inflate>. On completion it
1400 Returns the total number of bytes compressed bytes input to inflate.
1404 Returns the total number of uncompressed bytes output from inflate.
1408 Here is an example of using C<inflate>.
1425 ($output, $status) = $x->inflate(\$input) ;