Home
last modified time | relevance | path

Searched refs:m_nCachedLines (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/core/src/fxcodec/codec/
Dfx_codec.cpp36 : m_Width(width), m_Height(height), m_Pitch(pitch), m_nCachedLines(0) {} in ImageDataCache()
56 if (m_Pitch == 0 || m_nCachedLines >= m_Height) { in AppendLine()
62 FXSYS_memcpy(m_Data.get() + offset * m_nCachedLines, line, m_Pitch); in AppendLine()
63 ++m_nCachedLines; in AppendLine()
67 if (m_Pitch == 0 || line < 0 || line >= m_nCachedLines) in GetLine()
Dcodec_int.h69 int NumLines() const { return m_nCachedLines; } in NumLines()
81 int m_nCachedLines; variable