Lines Matching refs:nCompressedSize
502 sal_Int32 nSize = rEntry.nMethod == DEFLATED ? rEntry.nCompressedSize : rEntry.nSize; in hasValidPassword()
646 sal_Int32 nTestSig, nTime, nCRC, nSize, nCompressedSize; in readLOC() local
660 aGrabber >> nCompressedSize; in readLOC()
802 aMemGrabber >> aEntry.nCompressedSize; in readCEN()
890 aMemGrabber >> aEntry.nCompressedSize; in recover()
902 if ( aEntry.nCompressedSize < 0 ) aEntry.nCompressedSize = 0x7FFFFFFF; in recover()
908 sal_Int32 nDataSize = ( aEntry.nMethod == DEFLATED ) ? aEntry.nCompressedSize : aEntry.nSize; in recover()
931 if ( ( aEntry.nSize || aEntry.nCompressedSize ) && !checkSizeAndCRC( aEntry ) ) in recover()
934 aEntry.nCompressedSize = 0; in recover()
948 sal_Int32 nCompressedSize, nSize, nCRC32; in recover() local
951 aMemGrabber >> nCompressedSize; in recover()
961 sal_Int32 nStreamOffset = nGenPos + nPos - nCompressedSize; in recover()
962 …if ( nStreamOffset == (*aIter).second.nOffset && nCompressedSize > (*aIter).second.nCompressedSize… in recover()
965 … sal_Bool bAcceptBlock = ( (*aIter).second.nMethod == STORED && nCompressedSize == nSize ); in recover()
970 … getSizeAndCRC( nStreamOffset, nCompressedSize, &nRealSize, &nRealCRC ); in recover()
977 (*aIter).second.nCompressedSize = nCompressedSize; in recover()
983 else if( !(*aIter).second.nCompressedSize ) in recover()
987 (*aIter).second.nCompressedSize = nGenPos + nPos - (*aIter).second.nOffset; in recover()
1029 getSizeAndCRC( aEntry.nOffset, aEntry.nCompressedSize, &nSize, &nCRC ); in checkSizeAndCRC()
1052 void ZipFile::getSizeAndCRC( sal_Int32 nOffset, sal_Int32 nCompressedSize, sal_Int32 *nSize, sal_In… in getSizeAndCRC() argument
1060 sal_Int32 nBlockSize = ::std::min( nCompressedSize, static_cast< sal_Int32 >( 32000 ) ); in getSizeAndCRC()
1064 …ocal.finished() && aGrabber.readBytes( aBuffer, nBlockSize ) && ind * nBlockSize < nCompressedSize; in getSizeAndCRC()