Lines Matching refs:sal_Size

91         sal_Size nNewPos = rStrm.Tell();  in Update()
196 void XclImpBiff5Decrypter::OnUpdate( sal_Size /*nOldStrmPos*/, sal_Size nNewStrmPos, sal_uInt16 nRe… in OnUpdate() argument
275 void XclImpBiff8Decrypter::OnUpdate( sal_Size nOldStrmPos, sal_Size nNewStrmPos, sal_uInt16 /*nRecS… in OnUpdate()
323 sal_uInt32 XclImpBiff8Decrypter::GetBlock( sal_Size nStrmPos ) const in GetBlock()
328 sal_uInt16 XclImpBiff8Decrypter::GetOffset( sal_Size nStrmPos ) const in GetOffset()
349 const SvStream& rStrm, sal_Size nNextPos, sal_Size nCurrSize, in Set()
363 SvStream& rStrm, sal_Size& rnNextPos, sal_Size& rnCurrSize, in Get()
455 sal_Size nZeroRecCount = 5; in StartNextRecord()
474 bool XclImpStream::StartNextRecord( sal_Size nNextRecPos ) in StartNextRecord()
571 sal_Size XclImpStream::GetRecPos() const in GetRecPos()
576 sal_Size XclImpStream::GetRecSize() in GetRecSize()
589 sal_Size XclImpStream::GetRecLeft() in GetRecLeft()
798 sal_Size XclImpStream::Read( void* pData, sal_Size nBytes ) in Read()
800 sal_Size nRet = 0; in Read()
804 sal_Size nBytesLeft = nBytes; in Read()
823 sal_Size XclImpStream::CopyToStream( SvStream& rOutStrm, sal_Size nBytes ) in CopyToStream()
825 sal_Size nRet = 0; in CopyToStream()
828 const sal_Size nMaxBuffer = 4096; in CopyToStream()
830 sal_Size nBytesLeft = nBytes; in CopyToStream()
834 sal_Size nReadSize = ::std::min( nBytesLeft, nMaxBuffer ); in CopyToStream()
845 sal_Size XclImpStream::CopyRecordToStream( SvStream& rOutStrm ) in CopyRecordToStream()
847 sal_Size nRet = 0; in CopyRecordToStream()
858 void XclImpStream::Seek( sal_Size nPos ) in Seek()
862 sal_Size nCurrPos = GetRecPos(); in Seek()
875 void XclImpStream::Ignore( sal_Size nBytes ) in Ignore()
878 sal_Size nBytesLeft = nBytes; in Ignore()
893 sal_Size XclImpStream::ReadUniStringExtHeader( in ReadUniStringExtHeader()
906 sal_Size XclImpStream::ReadUniStringExtHeader( bool& rb16Bit, sal_uInt8 nFlags ) in ReadUniStringExtHeader()
972 sal_Size nExtSize = ReadUniStringExtHeader( b16Bit, nFlags ); in ReadUniString()
1017 sal_Size nExtSize = ReadUniStringExtHeader( b16Bit, nFlags ); in IgnoreUniString()
1150 sal_uInt16 XclImpStream::GetMaxRawReadSize( sal_Size nBytes ) const in GetMaxRawReadSize()
1152 return static_cast< sal_uInt16 >( ::std::min< sal_Size >( nBytes, mnRawRecLeft ) ); in GetMaxRawReadSize()