HomeSort by relevance Sort by last modified time
    Searched refs:m_Pitch (Results 1 - 11 of 11) sorted by null

  /external/pdfium/core/fxge/dib/
cfx_filtereddib.cpp 22 m_Pitch = (m_Width * (format & 0xff) + 31) / 32 * 4;
24 m_Scanline.resize(m_Pitch);
cfx_dibitmap.cpp 43 m_Pitch = 0;
67 m_Pitch = pitch;
80 m_Pitch = 0;
94 memcpy(m_pBuffer.Get() + row * m_Pitch, pSrc->GetScanline(row), m_Pitch);
105 return m_pBuffer.Get() ? m_pBuffer.Get() + line * m_Pitch : nullptr;
118 m_Pitch = pSrcBitmap->m_Pitch;
128 memset(pBuffer, (color & 0xff000000) ? 0xff : 0, m_Pitch * m_Height);
132 memset(pBuffer, index ? 0xff : 0, m_Pitch * m_Height)
    [all...]
cfx_dibsource.h 53 uint32_t GetPitch() const { return m_Pitch; }
131 uint32_t m_Pitch;
cfx_dibsource.cpp 600 : m_Width(0), m_Height(0), m_bpp(0), m_AlphaFlag(0), m_Pitch(0) {}
628 int dword_count = pNewBitmap->m_Pitch / 4;
639 if (m_Pitch < static_cast<uint32_t>(copy_len))
640 copy_len = m_Pitch;
847 m_pAlphaMask->m_Pitch);
864 pDestBuffer + m_Pitch * (bYFlip ? (m_Height - row - 1) : row);
866 memcpy(dest_scan, src_scan, m_Pitch);
870 memset(dest_scan, 0, m_Pitch);
    [all...]
  /external/pdfium/core/fxcodec/codec/
ccodec_scanlinedecoder.h 48 uint32_t m_Pitch;
ccodec_scanlinedecoder.cpp 27 m_Pitch(nPitch),
fx_codec.cpp     [all...]
fx_codec_fax.cpp 551 for (uint32_t i = 0; i < m_Pitch; ++i)
751 const int m_Pitch;
759 : m_Cols(width), m_Rows(height), m_Pitch(pitch), m_pSrcBuf(src_buf) {
760 m_RefLine.resize(m_Pitch);
761 memset(m_RefLine.data(), 0xff, m_Pitch);
762 m_pLineBuf = FX_Alloc2D(uint8_t, m_Pitch, 8);
776 const uint8_t* scan_line = m_pSrcBuf + i * m_Pitch;
777 memset(m_pLineBuf, 0, m_Pitch * 8);
783 memcpy(m_RefLine.data(), scan_line, m_Pitch);
fx_codec_flate.cpp 651 m_Pitch = (static_cast<uint32_t>(width) * nComps * bpc + 7) / 8;
652 m_pScanline = FX_Alloc(uint8_t, m_Pitch);
695 if (m_Pitch == m_PredictPitch) {
702 FlateOutput(m_pFlate, m_pScanline, m_Pitch);
707 size_t bytes_to_go = m_Pitch;
729 memcpy(m_pScanline + m_Pitch - bytes_to_go, m_pPredictBuffer,
736 FlateOutput(m_pFlate, m_pScanline, m_Pitch);
fx_codec_jpeg.cpp 290 m_Pitch =
293 m_pScanlineBuf = FX_Alloc(uint8_t, m_Pitch);
  /external/pdfium/core/fpdfapi/render/
cpdf_dibsource.cpp 212 m_Pitch = pitch.ValueOrDie();
249 m_Pitch = pitch.ValueOrDie();
992 memset(pLineBuf, 0xFF, m_Pitch);
    [all...]

Completed in 104 milliseconds