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.cpp765 uint8_t* m_pLineBuf; member in CCodec_FaxEncoder
779 m_pLineBuf = FX_Alloc2D(uint8_t, m_Pitch, 8); in CCodec_FaxEncoder()
784 FX_Free(m_pLineBuf); in ~CCodec_FaxEncoder()
791 FXSYS_memset(m_pLineBuf, 0, m_Pitch * 8); in Encode()
792 m_pLineBuf[0] = last_byte; in Encode()
793 FaxEncode2DLine(m_pLineBuf, dest_bitpos, scan_line, m_pRefLine, m_Cols); in Encode()
794 m_DestBuf.AppendBlock(m_pLineBuf, dest_bitpos / 8); in Encode()
795 last_byte = m_pLineBuf[dest_bitpos / 8]; in Encode()
/external/pdfium/core/src/fpdfapi/fpdf_render/
Dfpdf_render_loadimage.cpp167 m_pMaskedLine = m_pLineBuf = NULL; in CPDF_DIBSource()
185 FX_Free(m_pLineBuf); in ~CPDF_DIBSource()
269 m_pLineBuf = FX_Alloc(uint8_t, pitch.ValueOrDie()); in Load()
312 m_pLineBuf = FX_Alloc(uint8_t, pitch.ValueOrDie()); in ContinueToLoadMask()
1099 uint8_t* pLineBuf = m_pMaskedLine ? m_pMaskedLine : m_pLineBuf; in GetScanline()
1106 m_pLineBuf[i] = ~pSrcLine[i]; in GetScanline()
1131 FXSYS_memcpy(m_pLineBuf, pSrcLine, src_pitch_value); in GetScanline()
1133 return m_pLineBuf; in GetScanline()
1137 FXSYS_memcpy(m_pLineBuf, pSrcLine, src_pitch_value); in GetScanline()
1147 m_pLineBuf[col] = color_index; in GetScanline()
[all …]
Drender_int.h590 uint8_t* m_pLineBuf; variable