Searched refs:pImage (Results 1 - 25 of 48) sorted by relevance

12

/external/pdfium/core/fpdfapi/render/
H A Dcpdf_imageloader.cpp24 bool CPDF_ImageLoader::Start(const CPDF_ImageObject* pImage, argument
31 m_pImageObject = const_cast<CPDF_ImageObject*>(pImage);
64 RetainPtr<CPDF_Image> pImage = m_pImageObject->GetImage(); local
66 m_pBitmap = pImage->DetachBitmap();
67 m_pMask = pImage->DetachMask();
68 m_MatteColor = pImage->m_MatteColor;
H A Dcpdf_pagerendercache.h31 void ResetBitmap(const RetainPtr<CPDF_Image>& pImage,
38 bool StartGetCachedBitmap(const RetainPtr<CPDF_Image>& pImage,
H A Dcpdf_pagerendercache.cpp83 const RetainPtr<CPDF_Image>& pImage,
88 CPDF_Stream* pStream = pImage->GetStream();
95 new CPDF_ImageCacheEntry(m_pPage->m_pDocument.Get(), pImage);
129 void CPDF_PageRenderCache::ResetBitmap(const RetainPtr<CPDF_Image>& pImage, argument
132 CPDF_Stream* pStream = pImage->GetStream();
138 pEntry = new CPDF_ImageCacheEntry(m_pPage->m_pDocument.Get(), pImage);
82 StartGetCachedBitmap( const RetainPtr<CPDF_Image>& pImage, bool bStdCS, uint32_t GroupFamily, bool bLoadMask, CPDF_RenderStatus* pRenderStatus) argument
H A Dcpdf_imageloader.h26 bool Start(const CPDF_ImageObject* pImage,
H A Dcpdf_imagecacheentry.cpp23 const RetainPtr<CPDF_Image>& pImage)
27 m_pImage(pImage),
22 CPDF_ImageCacheEntry(CPDF_Document* pDoc, const RetainPtr<CPDF_Image>& pImage) argument
H A Dcpdf_imagecacheentry.h27 const RetainPtr<CPDF_Image>& pImage);
/external/mesa3d/include/vulkan/
H A Dvulkan_intel.h45 typedef VkResult (VKAPI_PTR *PFN_vkCreateDmaBufImageINTEL)(VkDevice device, const VkDmaBufImageCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDeviceMemory* pMem, VkImage* pImage);
54 VkImage* pImage);
/external/opencv/cvaux/src/
H A D_cvvectrack.h149 IplImage* pImage; local
152 pImage = *ppImage;
153 if( pImage != NULL )
155 if (pImage->width != sz.width || pImage->height != sz.height || pImage->nChannels != lChNum)
156 cvReleaseImage( &pImage );
158 if( pImage == NULL )
159 pImage = cvCreateImage( sz, IPL_DEPTH_8U, lChNum);
160 *ppImage = pImage;
[all...]
H A D_cvfacedetection.h357 IplImage* pImage; local
360 pImage = *ppImage;
361 if( pImage != NULL )
363 if (pImage->width != sz.width || pImage->height != sz.height || pImage->nChannels != lChNum)
364 cvReleaseImage( &pImage );
366 if( pImage == NULL )
367 pImage = cvCreateImage( sz, IPL_DEPTH_8U, lChNum);
368 *ppImage = pImage;
[all...]
H A Dcvsegment.cpp84 icvSegmFloodFill_Stage1( uchar* pImage, int step, argument
91 uchar* img = pImage + step * seed.y;
103 img = pImage + seed.y*step;
145 img = pImage + (YC + flag) * step;
170 img = pImage + YC * step;
206 icvSegmFloodFill_Stage2( uchar* pImage, int step, argument
211 uchar* img = pImage + step * rect.y + rect.x * 3;
/external/pdfium/core/fxcodec/jbig2/
H A DJBig2_GrdProc.h31 FXCODEC_STATUS Start_decode_Arith(std::unique_ptr<CJBig2_Image>* pImage,
35 FXCODEC_STATUS Start_decode_MMR(std::unique_ptr<CJBig2_Image>* pImage,
57 FXCODEC_STATUS decode_Arith_Template0_opt3(CJBig2_Image* pImage,
62 CJBig2_Image* pImage,
66 FXCODEC_STATUS decode_Arith_Template1_opt3(CJBig2_Image* pImage,
71 CJBig2_Image* pImage,
75 FXCODEC_STATUS decode_Arith_Template2_opt3(CJBig2_Image* pImage,
80 CJBig2_Image* pImage,
84 FXCODEC_STATUS decode_Arith_Template3_opt3(CJBig2_Image* pImage,
89 CJBig2_Image* pImage,
[all...]
H A DJBig2_GrdProc.cpp641 std::unique_ptr<CJBig2_Image>* pImage,
651 if (!*pImage)
652 *pImage = pdfium::MakeUnique<CJBig2_Image>(GBW, GBH);
653 if (!(*pImage)->data()) {
654 *pImage = nullptr;
659 m_pImage = pImage->get();
716 std::unique_ptr<CJBig2_Image>* pImage,
721 *pImage = nullptr;
732 *pImage = std::move(image);
750 CJBig2_Image* pImage,
640 Start_decode_Arith( std::unique_ptr<CJBig2_Image>* pImage, CJBig2_ArithDecoder* pArithDecoder, JBig2ArithCtx* gbContext, IFX_PauseIndicator* pPause) argument
715 Start_decode_MMR( std::unique_ptr<CJBig2_Image>* pImage, CJBig2_BitStream* pStream) argument
749 decode_Arith_Template0_opt3( CJBig2_Image* pImage, CJBig2_ArithDecoder* pArithDecoder, JBig2ArithCtx* gbContext, IFX_PauseIndicator* pPause) argument
852 decode_Arith_Template0_unopt( CJBig2_Image* pImage, CJBig2_ArithDecoder* pArithDecoder, JBig2ArithCtx* gbContext, IFX_PauseIndicator* pPause) argument
910 decode_Arith_Template1_opt3( CJBig2_Image* pImage, CJBig2_ArithDecoder* pArithDecoder, JBig2ArithCtx* gbContext, IFX_PauseIndicator* pPause) argument
1011 decode_Arith_Template1_unopt( CJBig2_Image* pImage, CJBig2_ArithDecoder* pArithDecoder, JBig2ArithCtx* gbContext, IFX_PauseIndicator* pPause) argument
1065 decode_Arith_Template2_opt3( CJBig2_Image* pImage, CJBig2_ArithDecoder* pArithDecoder, JBig2ArithCtx* gbContext, IFX_PauseIndicator* pPause) argument
1166 decode_Arith_Template2_unopt( CJBig2_Image* pImage, CJBig2_ArithDecoder* pArithDecoder, JBig2ArithCtx* gbContext, IFX_PauseIndicator* pPause) argument
1220 decode_Arith_Template3_opt3( CJBig2_Image* pImage, CJBig2_ArithDecoder* pArithDecoder, JBig2ArithCtx* gbContext, IFX_PauseIndicator* pPause) argument
1307 decode_Arith_Template3_unopt( CJBig2_Image* pImage, CJBig2_ArithDecoder* pArithDecoder, JBig2ArithCtx* gbContext, IFX_PauseIndicator* pPause) argument
[all...]
H A DJBig2_HtrdProc.cpp66 std::unique_ptr<CJBig2_Image> pImage; local
68 GRD.Start_decode_Arith(&pImage, pArithDecoder, gbContext, nullptr);
72 if (!pImage)
75 GSPLANES[i] = std::move(pImage);
H A DJBig2_Image.cpp183 auto pImage = pdfium::MakeUnique<CJBig2_Image>(w, h);
185 pImage->fill(0);
186 return pImage;
188 if (!pImage->m_pData)
189 return pImage;
192 pLineDst = pImage->data();
200 pDstEnd = pLineDst + pImage->m_nStride;
205 pLineDst += pImage->m_nStride;
212 pDstEnd = pLineDst + pImage->m_nStride;
226 pLineDst += pImage
[all...]
/external/pdfium/core/fpdfapi/page/
H A Dcpdf_imageobject.cpp48 void CPDF_ImageObject::SetImage(const RetainPtr<CPDF_Image>& pImage) { argument
50 m_pImage = pImage;
H A Dcpdf_imageobject.h31 void SetImage(const RetainPtr<CPDF_Image>& pImage);
H A Dcpdf_docpagedata.cpp399 auto pImage = pdfium::MakeRetain<CPDF_Image>(m_pPDFDoc.Get(), dwStreamObjNum);
400 m_ImageMap[dwStreamObjNum] = pImage;
401 return pImage;
H A Dcpdf_streamcontentparser.h109 CPDF_ImageObject* AddImage(const RetainPtr<CPDF_Image>& pImage);
/external/pdfium/fpdfsdk/pwl/
H A Dcpwl_appstream.h30 void AddImage(const ByteString& sAPType, CPDF_Stream* pImage);
/external/mesa3d/src/intel/vulkan/
H A Danv_intel.c37 VkImage* pImage)
91 *pImage = anv_image_to_handle(image);
32 anv_CreateDmaBufImageINTEL( VkDevice _device, const VkDmaBufImageCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDeviceMemory* pMem, VkImage* pImage) argument
H A Danv_image.c261 VkImage *pImage)
301 *pImage = anv_image_to_handle(image);
316 VkImage *pImage)
323 pImage);
258 anv_image_create(VkDevice _device, const struct anv_image_create_info *create_info, const VkAllocationCallbacks* alloc, VkImage *pImage) argument
313 anv_CreateImage(VkDevice device, const VkImageCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkImage *pImage) argument
/external/opencv/cv/src/
H A Dcvfloodfill.cpp95 icvFloodFill_8u_CnIR( uchar* pImage, int step, CvSize roi, CvPoint seed, argument
99 uchar* img = pImage + step * seed.y;
167 img = pImage + (YC + dir) * step;
227 icvFloodFill_32f_CnIR( int* pImage, int step, CvSize roi, CvPoint seed, argument
231 int* img = pImage + (step /= sizeof(pImage[0])) * seed.y;
299 img = pImage + (YC + dir) * step;
373 icvFloodFill_Grad_8u_CnIR( uchar* pImage, int step, uchar* pMask, int maskStep, argument
378 uchar* img = pImage + step*seed.y;
481 img = pImage
679 icvFloodFill_Grad_32f_CnIR( float* pImage, int step, uchar* pMask, int maskStep, CvSize , CvPoint seed, float* _newVal, float* _d_lw, float* _d_up, CvConnectedComp* region, int flags, CvFFillSegment* buffer, int buffer_size, int cn ) argument
[all...]
/external/pdfium/core/fpdfapi/edit/
H A Dcpdf_pagecontentgenerator.cpp178 RetainPtr<CPDF_Image> pImage = pImageObj->GetImage(); local
179 if (pImage->IsInline())
182 CPDF_Stream* pStream = pImage->GetStream();
188 pImage->ConvertStreamToIndirectObject();
/external/vulkan-validation-layers/layers/
H A Dbuffer_validation.h38 const VkAllocationCallbacks *pAllocator, VkImage *pImage);
40 void PostCallRecordCreateImage(layer_data *device_data, const VkImageCreateInfo *pCreateInfo, VkImage *pImage);
/external/mesa3d/src/amd/vulkan/
H A Dradv_image.c678 VkImage *pImage)
747 *pImage = radv_image_to_handle(image);
924 VkImage *pImage)
932 pImage);
675 radv_image_create(VkDevice _device, const struct radv_image_create_info *create_info, const VkAllocationCallbacks* alloc, VkImage *pImage) argument
921 radv_CreateImage(VkDevice device, const VkImageCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkImage *pImage) argument

Completed in 5588 milliseconds

12