Home
last modified time | relevance | path

Searched refs:InputLength (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DBase64.cpp43 const uint64_t InputLength = Input.size(); in decodeBase64() local
44 if (InputLength == 0) in decodeBase64()
48 if ((InputLength % 4) != 0) in decodeBase64()
52 const uint64_t FirstValidEqualIdx = InputLength - 2; in decodeBase64()
54 for (uint64_t Idx = 0; Idx < InputLength; Idx += 4) { in decodeBase64()
88 if (Input[InputLength - 2] == '=') in decodeBase64()
/openbsd-src/gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress/
H A DFAQ.pod488 =head2 Using C<InputLength> to uncompress data embedded in a larger file/buffer.
503 To illustrate how to use C<InputLength> here is a script that walks a zip
571 InputLength => $compressedLength )
595 InputLength => $compressedLength )
610 it as it goes. The use of the C<InputLength> option will guarantee that
618 Now consider what the code looks like without C<InputLength>
652 Using C<InputLength> avoids the use of temporary storage and means the
655 One final point -- obviously C<InputLength> can only be used whenever you
/openbsd-src/gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Uncompress/
H A DBase.pm39 if (defined *$self->{InputLength}) {
50 if defined *$self->{InputLength};
101 if defined *$self->{InputLength};
128 *$self->{InputLengthRemaining} = *$self->{InputLength};
452 *$obj->{InputLength} = $got->parsed('inputlength')
/openbsd-src/gnu/usr.bin/perl/cpan/IO-Compress/t/compress/
H A Doneshot.pl1299 title "$TopType - From Handle to Buffer, InputLength" ;
1310 ok &$Func($in, \$out, Transparent => 0, InputLength => length $comp, @opts), ' Uncompressed ok' ;
1319 ok &$Func($in, \$out, Transparent => 0, InputLength => length $comp, @opts), ' Uncompressed ok' ;
1337 title "$TopType - From stdin (via $stdin) to Buffer content, InputLength" ;
1353 ok &$Func($stdin, \$output, Transparent => 0, InputLength => length $comp, @opts), ' Uncompressed ok'
H A Dgeneric.pl1249 title "$UncompressClass -- InputLength, read from $type, good data => $good";
1289 InputLength => $comp_len,