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

  /external/pdfium/core/fpdfapi/page/
cpdf_psengine.h 89 void Reset() { m_StackCount = 0; }
92 uint32_t GetStackSize() const { return m_StackCount; }
96 uint32_t m_StackCount;
fpdf_page_func.cpp 188 m_StackCount = 0;
192 if (m_StackCount == PSENGINE_STACKSIZE) {
195 m_Stack[m_StackCount++] = v;
198 if (m_StackCount == 0) {
201 return m_Stack[--m_StackCount];
446 if (n < 0 || m_StackCount + n > PSENGINE_STACKSIZE ||
447 n > static_cast<int>(m_StackCount))
450 m_Stack[m_StackCount + i] = m_Stack[m_StackCount + i - n];
451 m_StackCount += n
    [all...]

Completed in 779 milliseconds