Searched refs:m_PredictPitch (Results 1 - 1 of 1) sorted by relevance

/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_flate.cpp592 int m_Colors, m_BitsPerComponent, m_Columns, m_PredictPitch, m_LeftOver; member in class:CCodec_FlateScanlineDecoder
652 m_PredictPitch = (m_BitsPerComponent * m_Colors * m_Columns + 7) / 8;
653 m_pLastLine = FX_Alloc(FX_BYTE, m_PredictPitch);
657 FXSYS_memset32(m_pLastLine, 0, m_PredictPitch);
658 m_pPredictRaw = FX_Alloc(FX_BYTE, m_PredictPitch + 1);
662 m_pPredictBuffer = FX_Alloc(FX_BYTE, m_PredictPitch);
686 if (m_Pitch == m_PredictPitch) {
688 FPDFAPI_FlateOutput(m_pFlate, m_pPredictRaw, m_PredictPitch + 1);
690 FXSYS_memcpy32(m_pLastLine, m_pScanline, m_PredictPitch);
693 TIFF_PredictLine(m_pScanline, m_PredictPitch, m_bp
[all...]

Completed in 124 milliseconds