Searched refs:m_pLineBuf (Results 1 – 3 of 3) sorted by relevance
/external/pdfium/core/fxcodec/codec/ |
D | fx_codec_fax.cpp | 748 uint8_t* m_pLineBuf; member in __anon7e7367680211::CCodec_FaxEncoder 762 m_pLineBuf = FX_Alloc2D(uint8_t, m_Pitch, 8); in CCodec_FaxEncoder() 767 FX_Free(m_pLineBuf); in ~CCodec_FaxEncoder() 777 memset(m_pLineBuf, 0, m_Pitch * 8); in Encode() 778 m_pLineBuf[0] = last_byte; in Encode() 779 FaxEncode2DLine(m_pLineBuf, &dest_bitpos, scan_line, m_RefLine, m_Cols); in Encode() 780 m_DestBuf.AppendBlock(m_pLineBuf, dest_bitpos / 8); in Encode() 781 last_byte = m_pLineBuf[dest_bitpos / 8]; in Encode()
|
/external/pdfium/core/fpdfapi/render/ |
D | cpdf_dibsource.cpp | 130 m_pLineBuf(nullptr), in CPDF_DIBSource() 138 FX_Free(m_pLineBuf); in ~CPDF_DIBSource() 201 m_pLineBuf = FX_Alloc(uint8_t, pitch.ValueOrDie()); in Load() 236 m_pLineBuf = FX_Alloc(uint8_t, pitch.ValueOrDie()); in ContinueToLoadMask() 991 uint8_t* pLineBuf = m_pMaskedLine ? m_pMaskedLine : m_pLineBuf; in GetScanline() 998 m_pLineBuf[i] = ~pSrcLine[i]; in GetScanline() 1023 memcpy(m_pLineBuf, pSrcLine, src_pitch_value); in GetScanline() 1025 return m_pLineBuf; in GetScanline() 1029 memcpy(m_pLineBuf, pSrcLine, src_pitch_value); in GetScanline() 1039 m_pLineBuf[col] = color_index; in GetScanline() [all …]
|
D | cpdf_dibsource.h | 144 uint8_t* m_pLineBuf; variable
|