Lines Matching refs:nCompressedSize

502         sal_Int32 nSize = rEntry.nMethod == DEFLATED ? rEntry.nCompressedSize : rEntry.nSize;  in hasValidPassword()
694 sal_Int32 nTestSig, nTime, nCRC, nSize, nCompressedSize; in readLOC() local
708 aGrabber >> nCompressedSize; in readLOC()
753 if ( ( nCRC | nCompressedSize | nSize ) != 0 ) in readLOC()
757 aGrabber.seek( rEntry.nFileDataOffset + rEntry.nCompressedSize ); in readLOC()
767 if ( n32 != rEntry.nCompressedSize ) in readLOC()
904 aMemGrabber >> aEntry.nCompressedSize; // compressed size in readCEN()
906 if ( aEntry.nMethod == STORED && ( aEntry.nCompressedSize != aEntry.nSize ) ) in readCEN()
998 nPos += aIt->second.nCompressedSize; in readCEN()
1075 aMemGrabber >> aEntry.nCompressedSize; in recover()
1087 if ( aEntry.nCompressedSize < 0 ) aEntry.nCompressedSize = 0x7FFFFFFF; in recover()
1093 … sal_Int32 nDataSize = ( aEntry.nMethod == DEFLATED ) ? aEntry.nCompressedSize : aEntry.nSize; in recover()
1116 … if ( ( aEntry.nSize || aEntry.nCompressedSize ) && !checkSizeAndCRC( aEntry ) ) in recover()
1119 aEntry.nCompressedSize = 0; in recover()
1133 sal_Int32 nCompressedSize, nSize, nCRC32; in recover() local
1136 aMemGrabber >> nCompressedSize; in recover()
1146 sal_Int32 nStreamOffset = nGenPos + nPos - nCompressedSize; in recover()
1147 …nStreamOffset == (*aIter).second.nFileDataOffset && nCompressedSize > (*aIter).second.nCompressedS… in recover()
1150 … sal_Bool bAcceptBlock = ( (*aIter).second.nMethod == STORED && nCompressedSize == nSize ); in recover()
1155 … getSizeAndCRC( nStreamOffset, nCompressedSize, &nRealSize, &nRealCRC ); in recover()
1162 (*aIter).second.nCompressedSize = nCompressedSize; in recover()
1168 else if( !(*aIter).second.nCompressedSize ) in recover()
1172 … (*aIter).second.nCompressedSize = nGenPos + nPos - (*aIter).second.nFileDataOffset; in recover()
1214 getSizeAndCRC( aEntry.nFileDataOffset, aEntry.nCompressedSize, &nSize, &nCRC ); in checkSizeAndCRC()
1237 void ZipFile::getSizeAndCRC( sal_Int32 nFileDataOffset, sal_Int32 nCompressedSize, sal_Int32 *nSize… in getSizeAndCRC() argument
1245 sal_Int32 nBlockSize = ::std::min( nCompressedSize, static_cast< sal_Int32 >( 32000 ) ); in getSizeAndCRC()
1249 …ocal.finished() && aGrabber.readBytes( aBuffer, nBlockSize ) && ind * nBlockSize < nCompressedSize; in getSizeAndCRC()