Searched refs:m_pScanline (Results 1 – 4 of 4) sorted by relevance
/external/pdfium/core/fxcodec/codec/ |
D | fx_codec.cpp | 287 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()
|
D | fx_codec_flate.cpp | 639 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/ |
D | fx_dib_engine.cpp | 962 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/ |
D | fx_dib.h | 620 std::unique_ptr<uint8_t, FxFreeDeleter> m_pScanline; variable
|