HomeSort by relevance Sort by last modified time
    Searched refs:m_DataLength (Results 1 - 2 of 2) sorted by null

  /external/pdfium/core/fxcrt/
cfx_blockbuffer.h 28 size_t GetDataLength() const { return m_DataLength; }
29 void IncrementDataLength() { m_DataLength++; }
30 bool IsEmpty() const { return m_DataLength == 0; }
35 m_DataLength = 0;
46 size_t m_DataLength;
cfx_blockbuffer.cpp 19 : m_DataLength(0), m_BufferSize(0), m_StartPosition(0) {}
31 size_t realIndex = m_StartPosition + m_DataLength;
59 m_DataLength = std::max(m_DataLength, index + 1);
66 if (count >= m_DataLength) {
70 m_DataLength -= count;

Completed in 922 milliseconds