Home
last modified time | relevance | path

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

/external/pdfium/core/src/fxcodec/jbig2/
DJBig2_BitStream.cpp15 m_dwLength(pSrcStream->GetSize()), in CJBig2_BitStream()
20 if (m_dwLength > 256 * 1024 * 1024) { in CJBig2_BitStream()
21 m_dwLength = 0; in CJBig2_BitStream()
95 if (m_dwByteIdx + 3 >= m_dwLength) in readInteger()
105 if (m_dwByteIdx + 1 >= m_dwLength) in readShortInteger()
134 return m_dwByteIdx + 1 < m_dwLength ? m_pBuf[m_dwByteIdx + 1] : 0xFF; in getNextByte_arith()
142 m_dwByteIdx = std::min(dwOffset, m_dwLength); in setOffset()
167 return m_dwLength - m_dwByteIdx; in getByteLeft()
180 return m_dwByteIdx < m_dwLength; in IsInBound()
184 return m_dwLength << 3; in LengthInBits()
DJBig2_BitStream.h37 FX_DWORD getLength() const { return m_dwLength; } in getLength()
49 FX_DWORD m_dwLength; variable