Lines Matching refs:nRequestedBytes
172 sal_Int32 nRequestedBytes = nBytesToRead; in readBytes() local
174 if ( mnMyCurrent + nRequestedBytes > mnZipSize + maHeader.getLength() ) in readBytes()
175 nRequestedBytes = static_cast < sal_Int32 > ( mnZipSize + maHeader.getLength() - mnMyCurrent ); in readBytes()
178 aData.realloc ( nRequestedBytes ); in readBytes()
179 if ( nRequestedBytes ) in readBytes()
187 sal_Int16 nHeadRead = static_cast< sal_Int16 >(( nRequestedBytes > mnHeaderToRead ? in readBytes()
188 … mnHeaderToRead : nRequestedBytes )); in readBytes()
192 if ( nHeadRead < nRequestedBytes ) in readBytes()
194 sal_Int32 nToRead = nRequestedBytes - nHeadRead; in readBytes()
222 static_cast < sal_Int32 > ( nDiff < nRequestedBytes ? nDiff : nRequestedBytes ) ); in readBytes()
234 ( nRead + nLastRead != nRequestedBytes && mnZipCurrent < mnZipEnd ) ) in readBytes()
238 if ( nRead > nRequestedBytes ) in readBytes()
256 … sal_Int32 nToRead = std::max( nRequestedBytes, static_cast< sal_Int32 >( 8192 ) ); in readBytes()
298 if ( nTotal < nRequestedBytes) in readBytes()