Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/codec/
Dfx_codec.cpp287 uint8_t* m_pScanline; member in CCodec_RLScanlineDecoder
296 : m_pScanline(nullptr), in CCodec_RLScanlineDecoder()
304 FX_Free(m_pScanline); in ~CCodec_RLScanlineDecoder()
360 m_pScanline = FX_Alloc(uint8_t, m_Pitch); in Create()
364 FXSYS_memset(m_pScanline, 0, m_Pitch); in v_Rewind()
378 FXSYS_memset(m_pScanline, 0, m_Pitch); in v_GetNextLine()
392 FXSYS_memcpy(m_pScanline + col_pos, m_pSrcBuf + m_SrcOffset, copy_len); in v_GetNextLine()
405 FXSYS_memset(m_pScanline + col_pos, fill, duplicate_len); in v_GetNextLine()
413 return m_pScanline; in v_GetNextLine()
Dfx_codec_flate.cpp639 uint8_t* m_pScanline; member in CCodec_FlateScanlineDecoder
653 m_pScanline = nullptr; in CCodec_FlateScanlineDecoder()
660 FX_Free(m_pScanline); in ~CCodec_FlateScanlineDecoder()
685 m_pScanline = FX_Alloc(uint8_t, m_Pitch); in Create()
729 PNG_PredictLine(m_pScanline, m_pPredictRaw, m_pLastLine, in v_GetNextLine()
731 FXSYS_memcpy(m_pLastLine, m_pScanline, m_PredictPitch); in v_GetNextLine()
733 FPDFAPI_FlateOutput(m_pFlate, m_pScanline, m_Pitch); in v_GetNextLine()
734 TIFF_PredictLine(m_pScanline, m_PredictPitch, m_bpc, m_nComps, in v_GetNextLine()
742 FXSYS_memcpy(m_pScanline, in v_GetNextLine()
761 FXSYS_memcpy(m_pScanline + m_Pitch - bytes_to_go, m_pPredictBuffer, in v_GetNextLine()
[all …]
/external/pdfium/core/fxge/dib/
Dfx_dib_engine.cpp962 m_pScanline.reset(FX_Alloc(uint8_t, (size / 8 + 3) / 4 * 4)); in StartQuickStretch()
974 if (!m_pScanline) in ContinueQuickStretch()
996 m_pSource->DownSampleScanline(src_y, m_pScanline.get(), m_DestBPP, in ContinueQuickStretch()
1004 m_pDest->ComposeScanline(dest_y, m_pScanline.get(), m_pMaskScanline.get()); in ContinueQuickStretch()
/external/pdfium/core/fxge/
Dfx_dib.h620 std::unique_ptr<uint8_t, FxFreeDeleter> m_pScanline; variable