Lines Matching refs:sal_Int64
42 sal_Int64 BinaryStreamBase::getRemaining() const in getRemaining()
45 sal_Int64 nPos = tell(); in getRemaining()
46 sal_Int64 nLen = size(); in getRemaining()
47 return ((nPos >= 0) && (nLen >= 0)) ? ::std::max< sal_Int64 >( nLen - nPos, 0 ) : -1; in getRemaining()
50 void BinaryStreamBase::alignToBlock( sal_Int32 nBlockSize, sal_Int64 nAnchorPos ) in alignToBlock()
52 sal_Int64 nStrmPos = tell(); in alignToBlock()
57 sal_Int64 nSkipSize = (nAnchorPos < nStrmPos) ? in alignToBlock()
76 sal_Int64 BinaryXSeekableStream::size() const in size()
89 sal_Int64 BinaryXSeekableStream::tell() const in tell()
102 void BinaryXSeekableStream::seek( sal_Int64 nPos ) in seek()
130 sal_Int64 SequenceSeekableStream::size() const in size()
135 sal_Int64 SequenceSeekableStream::tell() const in tell()
140 void SequenceSeekableStream::seek( sal_Int64 nPos ) in seek()
144 mnPos = getLimitedValue< sal_Int32, sal_Int64 >( nPos, 0, mpData->getLength() ); in seek()