Home
last modified time | relevance | path

Searched refs:m_pScanline (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/core/fxcodec/basic/
Dbasicmodule.cpp39 std::unique_ptr<uint8_t, FxFreeDeleter> m_pScanline; member in fxcodec::__anon6aa348520111::RLScanlineDecoder
104 m_pScanline.reset(FX_Alloc(uint8_t, m_Pitch)); in Create()
109 memset(m_pScanline.get(), 0, m_Pitch); in v_Rewind()
122 memset(m_pScanline.get(), 0, m_Pitch); in v_GetNextLine()
137 memcpy(m_pScanline.get() + col_pos, copy_span.data(), copy_span.size()); in v_GetNextLine()
150 memset(m_pScanline.get() + col_pos, fill, duplicate_len); in v_GetNextLine()
158 return m_pScanline.get(); in v_GetNextLine()
/external/pdfium/core/fxcodec/flate/
Dflatemodule.cpp610 std::unique_ptr<uint8_t, FxFreeDeleter> const m_pScanline; member in fxcodec::__anon0f322ee60111::FlateScanlineDecoder
626 m_pScanline(FX_Alloc(uint8_t, m_Pitch)) {} in FlateScanlineDecoder()
640 FlateOutput(m_pFlate.get(), m_pScanline.get(), m_Pitch); in v_GetNextLine()
641 return m_pScanline.get(); in v_GetNextLine()
723 return m_pScanline.get(); in v_GetNextLine()
730 PNG_PredictLine(m_pScanline.get(), m_PredictRaw.data(), m_LastLine.data(), in GetNextLineWithPredictedPitch()
732 memcpy(m_LastLine.data(), m_pScanline.get(), m_PredictPitch); in GetNextLineWithPredictedPitch()
735 FlateOutput(m_pFlate.get(), m_pScanline.get(), m_Pitch); in GetNextLineWithPredictedPitch()
736 TIFF_PredictLine(m_pScanline.get(), m_PredictPitch, m_bpc, m_nComps, in GetNextLineWithPredictedPitch()
749 memcpy(m_pScanline.get(), &m_PredictBuffer[m_PredictPitch - m_LeftOver], in GetNextLineWithoutPredictedPitch()
[all …]
/external/pdfium/core/fxge/dib/
Dcfx_imagestretcher.h45 std::unique_ptr<uint8_t, FxFreeDeleter> m_pScanline; variable