Lines Matching refs:m_nEnd
36 , m_nEnd(0) in ZipPackageBuffer()
51 if (nBytesToRead + m_nCurrent > m_nEnd) in readBytes()
52 nBytesToRead = static_cast < sal_Int32 > (m_nEnd - m_nCurrent); in readBytes()
71 if (nBytesToSkip + m_nCurrent > m_nEnd) in skipBytes()
72 nBytesToSkip = static_cast < sal_Int32 > (m_nEnd - m_nCurrent); in skipBytes()
79 return static_cast < sal_Int32 > (m_nEnd - m_nCurrent); in available()
88 sal_Int64 nDataLen = aData.getLength(), nCombined = m_nEnd + nDataLen; in writeBytes()
105 if (m_nCurrent>m_nEnd) in writeBytes()
106 m_nEnd = m_nCurrent; in writeBytes()
119 if ( location > m_nEnd || location < 0 ) in seek()
131 return m_nEnd; in getLength()