/external/pdfium/core/src/fxge/dib/ |
D | fx_dib_main.cpp | 437 const CFX_DIBSource* pMask, in TransferMask() argument 447 ASSERT(pMask->IsAlphaMask()); in TransferMask() 448 if (!HasAlpha() || !pMask->IsAlphaMask() || m_bpp < 24) { in TransferMask() 451 GetOverlapRect(dest_left, dest_top, width, height, pMask->GetWidth(), in TransferMask() 452 pMask->GetHeight(), src_left, src_top, NULL); in TransferMask() 456 int src_bpp = pMask->GetBPP(); in TransferMask() 488 const uint8_t* src_scan = pMask->GetScanline(src_top + row); in TransferMask() 516 const uint8_t* src_scan = pMask->GetScanline(src_top + row); in TransferMask() 585 CFX_DIBitmap* pMask = new CFX_DIBitmap; in GetAlphaMask() local 586 if (!pMask->Create(rect.Width(), rect.Height(), FXDIB_8bppMask)) { in GetAlphaMask() [all …]
|
D | fx_dib_composite.cpp | 4722 const CFX_DIBSource* pMask, in CompositeMask() argument 4734 ASSERT(pMask->IsAlphaMask()); in CompositeMask() 4736 if (!pMask->IsAlphaMask() || m_bpp < 8) { in CompositeMask() 4739 GetOverlapRect(dest_left, dest_top, width, height, pMask->GetWidth(), in CompositeMask() 4740 pMask->GetHeight(), src_left, src_top, pClipRgn); in CompositeMask() 4756 int src_bpp = pMask->GetBPP(); in CompositeMask() 4759 if (!compositor.Init(GetFormat(), pMask->GetFormat(), width, NULL, color, in CompositeMask() 4767 const uint8_t* src_scan = pMask->GetScanline(src_top + row); in CompositeMask()
|
/external/mesa3d/src/gallium/state_trackers/xorg/ |
D | xorg_composite.c | 297 struct exa_pixmap_priv *pSrc, struct exa_pixmap_priv *pMask) in bind_shaders() argument 342 fs_traits |= picture_format_fixups(pMask, pMaskPicture, TRUE, pDstPicture); in bind_shaders() 355 struct exa_pixmap_priv *pMask, in bind_samplers() argument 398 if (pMaskPicture && pMask) { in bind_samplers() 414 pMask->tex, in bind_samplers() 415 pMask->tex->format); in bind_samplers() 416 src_view = pipe->create_sampler_view(pipe, pMask->tex, &view_templ); in bind_samplers() 475 struct exa_pixmap_priv *pMask, in xorg_composite_bind_state() argument 485 bind_shaders(exa, op, pSrcPicture, pMaskPicture, pDstPicture, pSrc, pMask); in xorg_composite_bind_state() 487 pDstPicture, pSrc, pMask, pDst); in xorg_composite_bind_state()
|
D | xorg_composite.h | 17 struct exa_pixmap_priv *pMask,
|
D | xorg_exa.c | 611 PixmapPtr pSrc, PixmapPtr pMask, PixmapPtr pDst) in ExaPrepareComposite() argument 662 if (pMask) { in ExaPrepareComposite() 663 priv = exaGetPixmapDriverPrivate(pMask); in ExaPrepareComposite() 681 pMask ? exaGetPixmapDriverPrivate(pMask) : NULL, in ExaPrepareComposite()
|
/external/pdfium/core/src/fpdfapi/fpdf_render/ |
D | fpdf_render_cache.cpp | 79 CFX_DIBSource*& pMask, in GetCachedBitmap() argument 97 pBitmap, pMask, MatteColor, m_pPage->m_pPageResources, bStdCS, in GetCachedBitmap() 204 CFX_DIBSource*& pMask, in GetCachedBitmap() argument 215 pMask = m_pCachedMask; in GetCachedBitmap() 247 pMask = m_pCachedMask; in GetCachedBitmap()
|
D | fpdf_render_image.cpp | 952 std::unique_ptr<CFX_DIBitmap> pMask(new CFX_DIBitmap); in LoadSMask() local 953 if (!pMask->Create(width, height, FXDIB_8bppMask)) in LoadSMask() 956 uint8_t* dest_buf = pMask->GetBuffer(); in LoadSMask() 957 int dest_pitch = pMask->GetPitch(); in LoadSMask() 992 return pMask.release(); in LoadSMask()
|
D | fpdf_render_loadimage.cpp | 568 CPDF_Object* pMask = m_pDict->GetElementValue("Mask"); in GetDecodeAndMaskArray() local 569 if (!pMask) { in GetDecodeAndMaskArray() 572 if (CPDF_Array* pArray = pMask->AsArray()) { in GetDecodeAndMaskArray() 831 CPDF_DIBSource* CPDF_DIBSource::LoadMaskDIB(CPDF_Stream* pMask) { in LoadMaskDIB() argument 833 if (!pMaskSource->Load(m_pDocument, pMask, NULL, NULL, NULL, NULL, TRUE)) { in LoadMaskDIB()
|
D | render_int.h | 428 CFX_DIBSource*& pMask, 538 CPDF_DIBSource* LoadMaskDIB(CPDF_Stream* pMask);
|
/external/opencv/cvaux/src/ |
D | cvsegment.cpp | 85 uchar* pMask, int maskStep, in icvSegmFloodFill_Stage1() argument 92 uchar* mask = pMask + maskStep * (seed.y + 1); in icvSegmFloodFill_Stage1() 104 mask = pMask + seed.y*maskStep; in icvSegmFloodFill_Stage1() 146 mask = pMask + (YC + flag) * maskStep; in icvSegmFloodFill_Stage1() 207 uchar* pMask, int maskStep, in icvSegmFloodFill_Stage2() argument 212 uchar* mask = pMask + maskStep * rect.y + rect.x; in icvSegmFloodFill_Stage2()
|
/external/pdfium/core/src/fpdfapi/fpdf_edit/ |
D | fpdf_edit_image.cpp | 105 const CFX_DIBitmap* pMask, in SetImage() argument 212 if (!pMaskBitmap && pMask) { in SetImage() 213 FXDIB_Format maskFormat = pMask->GetFormat(); in SetImage() 215 pMaskBitmap = pMask; in SetImage()
|
/external/opencv/cv/src/ |
D | cvfloodfill.cpp | 373 icvFloodFill_Grad_8u_CnIR( uchar* pImage, int step, uchar* pMask, int maskStep, in icvFloodFill_Grad_8u_CnIR() argument 379 uchar* mask = (pMask += maskStep + 1) + maskStep*seed.y; in icvFloodFill_Grad_8u_CnIR() 482 mask = pMask + (YC + dir) * maskStep; in icvFloodFill_Grad_8u_CnIR() 570 mask = pMask + (YC + dir) * maskStep; in icvFloodFill_Grad_8u_CnIR() 679 icvFloodFill_Grad_32f_CnIR( float* pImage, int step, uchar* pMask, int maskStep, in icvFloodFill_Grad_32f_CnIR() argument 685 uchar* mask = (pMask += maskStep + 1) + maskStep*seed.y; in icvFloodFill_Grad_32f_CnIR() 788 mask = pMask + (YC + dir) * maskStep; in icvFloodFill_Grad_32f_CnIR() 877 mask = pMask + (YC + dir) * maskStep; in icvFloodFill_Grad_32f_CnIR()
|
D | _cvipp.h | 754 int normStep, uchar* pMask, int maskStep,
|
/external/pdfium/core/include/fpdfapi/ |
D | fpdf_render.h | 235 CFX_DIBSource*& pMask,
|
D | fpdf_resource.h | 814 const CFX_DIBitmap* pMask = NULL,
|
/external/pdfium/core/include/fxge/ |
D | fx_dib.h | 359 const CFX_DIBSource* pMask, 370 const CFX_DIBSource* pMask,
|
/external/opencv/cvaux/include/ |
D | cvvidsurv.hpp | 1142 virtual void Process(IplImage* pImg, IplImage* pMask = NULL) = 0;
|
/external/pdfium/core/src/fxge/agg/src/ |
D | fx_agg_driver.cpp | 1553 const CFX_DIBitmap* pMask = m_pClipRgn->GetMask(); in SetPixel() local 1557 new_alpha = new_alpha * pMask->GetScanline(y)[x] / 255; in SetPixel()
|
/external/sqlite/dist/ |
D | sqlite3.c | 14042 SQLITE_PRIVATE Trigger *sqlite3TriggersExist(Parse *, Table*, int, ExprList*, int *pMask); 115118 int *pMask /* OUT: Mask of TRIGGER_BEFORE|TRIGGER_AFTER */ 115133 if( pMask ){ 115134 *pMask = mask;
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 14042 SQLITE_PRIVATE Trigger *sqlite3TriggersExist(Parse *, Table*, int, ExprList*, int *pMask); 115100 int *pMask /* OUT: Mask of TRIGGER_BEFORE|TRIGGER_AFTER */ 115115 if( pMask ){ 115116 *pMask = mask;
|