Home
last modified time | relevance | path

Searched refs:CompSize (Results 1 – 8 of 8) sorted by relevance

/openbsd-src/gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Uncompress/Adapter/
H A DIdentity.pm24 bless { 'CompSize' => U64->new(), # 0,
98 my $newLen = $self->{CompSize}->clone();
121 $self->{CompSize}->add(length $$in) ;
142 $self->{CompSize}->reset();
159 return $self->{CompSize} ;
165 return $self->{CompSize} ;
/openbsd-src/gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress/Adapter/
H A DIdentity.pm18 'CompSize' => 0,
30 $self->{CompSize} += length ${ $_[0] } ;
31 $self->{UnCompSize} = $self->{CompSize} ;
60 $self->{CompSize} = 0;
/openbsd-src/gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress/
H A DZip.pm118 *$self->{CompSize}->add( $sparse );
466 $sizes .= *$self->{CompSize}->getPacked_V32() ; # Compressed size
470 $sizes .= *$self->{CompSize}->getPacked_V64() ; # Compressed size
477 $xtrasize .= *$self->{CompSize}->getPacked_V64() ; # Compressed size
507 if (*$self->{CompSize}->isAlmost64bit()) { # || *$self->{ZipData}{Zip64}) {
508 $zip64Payload .= *$self->{CompSize}->getPacked_V64() ;
510 substr($ctl, 20, 4) = *$self->{CompSize}->getPacked_V32() ;
536 *$self->{ZipData}{Offset}->add( *$self->{CompSize} );
H A DRawDeflate.pm179 *$self->{CompSize} = *$inf->{CompSize}->clone();
181 #*$self->{CompSize} = U64->new(0, *$self->{UnCompSize_32bit});
H A DBase.pm258 *$obj->{CompSize} = U64->new;
649 *$self->{CompSize}->add(length $outBuffer) ;
701 *$self->{CompSize}->add(length $outBuffer) ;
756 *$self->{CompSize}->reset();
780 # *$self->{CompSize}->reset();
804 *$self->{CompSize}->add(length $trailer) ;
/openbsd-src/gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Uncompress/
H A DBase.pm477 *$obj->{CompSize} = U64->new;
930 *$self->{CompSize}->add($beforeC_len - length $temp_buf) ;
1050 *$self->{CompSize}->reset();
H A DUnzip.pm279 if ! $cSize->equal(*$self->{CompSize});
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaExprMember.cpp405 unsigned CompSize = HalvingSwizzle ? (vecType->getNumElements() + 1) / 2 in CheckExtVectorComponent() local
408 CompSize--; in CheckExtVectorComponent()
410 if (CompSize == 1) in CheckExtVectorComponent()
416 QualType VT = S.Context.getExtVectorType(vecType->getElementType(), CompSize); in CheckExtVectorComponent()