Home
last modified time | relevance | path

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

/external/pdfium/core/src/fxcodec/codec/
Dfx_codec_fax.cpp902 FX_LPBYTE m_pRefLine, m_pLineBuf; member in CCodec_FaxEncoder
917 m_pLineBuf = FX_Alloc(FX_BYTE, m_Pitch * 8); in CCodec_FaxEncoder()
918 if (m_pLineBuf == NULL) { in CCodec_FaxEncoder()
928 if (m_pLineBuf) { in ~CCodec_FaxEncoder()
929 FX_Free(m_pLineBuf); in ~CCodec_FaxEncoder()
938 FXSYS_memset32(m_pLineBuf, 0, m_Pitch * 8); in Encode()
939 m_pLineBuf[0] = last_byte; in Encode()
940 _FaxEncode2DLine(m_pLineBuf, dest_bitpos, scan_line, m_pRefLine, m_Cols); in Encode()
941 m_DestBuf.AppendBlock(m_pLineBuf, dest_bitpos / 8); in Encode()
942 last_byte = m_pLineBuf[dest_bitpos / 8]; in Encode()
/external/pdfium/core/src/fpdfapi/fpdf_render/
Dfpdf_render_loadimage.cpp96 m_pMaskedLine = m_pLineBuf = NULL; in CPDF_DIBSource()
120 if (m_pLineBuf) { in ~CPDF_DIBSource()
121 FX_Free(m_pLineBuf); in ~CPDF_DIBSource()
234 m_pLineBuf = FX_Alloc(FX_BYTE, m_Pitch); in Load()
289 m_pLineBuf = FX_Alloc(FX_BYTE, m_Pitch); in ContinueToLoadMask()
1082 FX_LPBYTE pLineBuf = m_pMaskedLine ? m_pMaskedLine : m_pLineBuf; in GetScanline()
1089 m_pLineBuf[i] = ~pSrcLine[i]; in GetScanline()
1114 FXSYS_memcpy32(m_pLineBuf, pSrcLine, src_pitch); in GetScanline()
1116 return m_pLineBuf; in GetScanline()
1120 FXSYS_memcpy32(m_pLineBuf, pSrcLine, src_pitch); in GetScanline()
[all …]
Drender_int.h433 FX_LPBYTE m_pLineBuf; variable