Searched refs:pSrcBuf (Results 1 - 5 of 5) sorted by relevance

/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_colors.cpp46 void ReverseRGB(uint8_t* pDestBuf, const uint8_t* pSrcBuf, int pixels) { argument
47 if (pDestBuf == pSrcBuf) {
56 *pDestBuf++ = pSrcBuf[2];
57 *pDestBuf++ = pSrcBuf[1];
58 *pDestBuf++ = pSrcBuf[0];
59 pSrcBuf += 3;
173 const uint8_t* pSrcBuf,
180 int k = 255 - pSrcBuf[3];
181 pDestBuf[0] = ((255 - pSrcBuf[0]) * k) / 255;
182 pDestBuf[1] = ((255 - pSrcBuf[
172 TranslateImageLine(uint8_t* pDestBuf, const uint8_t* pSrcBuf, int pixels, int image_width, int image_height, FX_BOOL bTransMask) const argument
372 TranslateImageLine(uint8_t* pDestBuf, const uint8_t* pSrcBuf, int pixels, int image_width, int image_height, FX_BOOL bTransMask) const argument
480 TranslateImageLine(uint8_t* pDestBuf, const uint8_t* pSrcBuf, int pixels, int image_width, int image_height, FX_BOOL bTransMask) const argument
[all...]
H A Dpageint.h432 const uint8_t* pSrcBuf,
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_flate.cpp979 uint8_t* pSrcBuf = NULL; local
980 pSrcBuf = FX_Alloc(uint8_t, src_size);
981 FXSYS_memcpy(pSrcBuf, src_buf, src_size);
984 ret = TIFF_PredictorEncode(pSrcBuf, src_size, Colors, BitsPerComponent,
987 ret = PNG_PredictorEncode(pSrcBuf, src_size, predictor, Colors,
991 ret = Encode(pSrcBuf, src_size, dest_buf, dest_size);
992 FX_Free(pSrcBuf);
/external/pdfium/xfa/src/fxgraphics/src/
H A Dfx_graphics.cpp648 FX_ARGB* pSrcBuf = (FX_ARGB*)(srcBitmap->GetBuffer() +
655 FX_ARGB* pSrcLine = pSrcBuf + (int32_t)r.left;
663 pSrcBuf = (FX_ARGB*)((uint8_t*)pSrcBuf + srcBitmap->GetPitch());
681 FX_ARGB* pSrcBuf = (FX_ARGB*)(srcBitmap->GetBuffer() +
688 FX_ARGB* pSrcLine = pSrcBuf + (int32_t)r.left;
696 pSrcBuf = (FX_ARGB*)((uint8_t*)pSrcBuf + srcBitmap->GetPitch());
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_text.cpp1609 uint8_t* pSrcBuf = local
1618 (pSrcBuf[i * src_pitch + n / 8] & (0x80 >> (n % 8))) ? 255 : 0;
1631 FXSYS_memcpy(pDestBuf + row * dest_pitch, pSrcBuf + row * src_pitch,
1635 _ContrastAdjust(pSrcBuf, pDestBuf, bmwidth, bmheight, src_pitch,

Completed in 210 milliseconds