Home | History | Annotate | Download | only in fxcrt

Lines Matching refs:m_nCurPos

22       m_nCurPos(0),
31 m_nCurPos(0),
49 return m_nCurPos >= static_cast<size_t>(GetSize());
53 return static_cast<FX_FILESIZE>(m_nCurPos);
73 m_nCurPos = newPos.ValueOrDie();
93 if (m_nCurPos >= m_nCurSize)
96 size_t nRead = std::min(size, m_nCurSize - m_nCurPos);
97 if (!ReadBlock(buffer, static_cast<int32_t>(m_nCurPos), nRead))
115 m_nCurPos = newPos.ValueOrDie();
116 if (m_nCurPos > m_nTotalSize) {
117 m_nTotalSize = (m_nCurPos + m_nGrowSize - 1) / m_nGrowSize * m_nGrowSize;
125 m_nCurSize = std::max(m_nCurSize, m_nCurPos);
137 m_nCurPos = newPos.ValueOrDie();
171 m_nCurPos = 0;
182 m_nCurPos = 0;