/external/pdfium/core/src/fxcodec/jbig2/ |
JBig2_GeneralDecoder.h | 48 FXCODEC_STATUS Start_decode_Arith(CJBig2_Image** pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause = NULL);
49 FXCODEC_STATUS Start_decode_Arith_V2(CJBig2_Image** pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause = NULL);
50 FXCODEC_STATUS Start_decode_Arith_V1(CJBig2_Image** pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause = NULL);
51 FXCODEC_STATUS Start_decode_MMR(CJBig2_Image** pImage, CJBig2_BitStream *pStream, IFX_Pause* pPause = NULL);
62 FXCODEC_STATUS decode_Arith_Template0_opt3(CJBig2_Image*pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause);
63 FXCODEC_STATUS decode_Arith_Template0_unopt(CJBig2_Image *pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause);
64 FXCODEC_STATUS decode_Arith_Template1_opt3(CJBig2_Image *pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause);
65 FXCODEC_STATUS decode_Arith_Template1_unopt(CJBig2_Image * pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause);
66 FXCODEC_STATUS decode_Arith_Template2_opt3(CJBig2_Image *pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause);
67 FXCODEC_STATUS decode_Arith_Template2_unopt(CJBig2_Image * pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause); [all...] |
JBig2_GeneralDecoder.cpp | 16 CJBig2_Image* pImage;
17 JBIG2_ALLOC(pImage, CJBig2_Image(GBW, GBH));
18 return pImage;
[all...] |
JBig2_Image.cpp | 698 CJBig2_Image *pImage;
700 JBIG2_ALLOC(pImage, CJBig2_Image(w, h));
703 pImage->setPixel(i, j, getPixel(x + i, y + j));
706 return pImage;
711 CJBig2_Image *pImage;
719 JBIG2_ALLOC(pImage, CJBig2_Image(w, h));
721 pImage->fill(0);
722 return pImage;
724 if (!pImage->m_pData) {
725 return pImage;
[all...] |
/external/opencv/cvaux/src/ |
_cvvectrack.h | 149 IplImage* pImage; 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...] |
_cvfacedetection.h | 357 IplImage* pImage; 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...] |
cvsegment.cpp | 84 icvSegmFloodFill_Stage1( uchar* pImage, int step, 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, 211 uchar* img = pImage + step * rect.y + rect.x * 3;
|
cvlee.cpp | [all...] |
/external/pixman/demos/ |
gtk-utils.c | 98 pixman_image_t *pimage = data; local 99 int width = pixman_image_get_width (pimage); 100 int height = pixman_image_get_height (pimage); 101 int stride = pixman_image_get_stride (pimage); 106 if (pixman_image_get_format (pimage) == PIXMAN_x8r8g8b8) 112 (uint8_t *)pixman_image_get_data (pimage),
|
/external/pdfium/core/src/fpdfapi/fpdf_page/ |
fpdf_page_image.cpp | 57 CPDF_Image* pImage = FX_NEW CPDF_Image(m_pDocument);
58 pImage->LoadImageF((CPDF_Stream*)((CPDF_Object*)m_pStream)->Clone(), m_bInline);
61 pImage->SetInlineDict(pInlineDict);
63 return pImage;
|
fpdf_page_doc.cpp | 538 CPDF_Image* pImage = FX_NEW CPDF_Image(m_pPDFDoc);
539 if (!pImage) {
543 pImage->LoadImageF((CPDF_Stream*)pImageStream, FALSE);
545 imageData->m_Obj = pImage;
547 return pImage;
|
fpdf_page_parser.cpp | [all...] |
pageint.h | 224 CPDF_ImageObject* AddImage(CPDF_Stream* pStream, CPDF_Image* pImage, FX_BOOL bInline);
|
/external/pdfium/fpdfsdk/include/pdfwindow/ |
PWL_Signature.h | 20 void SetImage(CFX_DIBSource* pImage);
41 void SetImage(CFX_DIBSource* pImage);
|
/external/pdfium/fpdfsdk/src/pdfwindow/ |
PWL_Signature.cpp | 24 void CPWL_Signature_Image::SetImage(CFX_DIBSource* pImage)
26 m_pImage = pImage;
116 void CPWL_Signature::SetImage(CFX_DIBSource* pImage)
118 m_pImage->SetImage(pImage);
|
/external/opencv/cv/src/ |
cvfloodfill.cpp | 95 icvFloodFill_8u_CnIR( uchar* pImage, int step, CvSize roi, CvPoint seed, 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, 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, 378 uchar* img = pImage + step*seed.y; 481 img = pImage + (YC + dir) * step [all...] |
/external/pdfium/core/src/fpdfapi/fpdf_render/ |
render_int.h | 192 FX_BOOL Load(const CPDF_ImageObject* pImage, CPDF_PageRenderCache* pCache, FX_BOOL bStdCS = FALSE, FX_DWORD GroupFamily = 0, FX_BOOL bLoadMask = FALSE, CPDF_RenderStatus* pRenderStatus = NULL);
194 FX_BOOL StartLoadImage(const CPDF_ImageObject* pImage, CPDF_PageRenderCache* pCache, FX_LPVOID& LoadHandle, FX_BOOL bStdCS = FALSE, FX_DWORD GroupFamily = 0, FX_BOOL bLoadMask = FALSE, CPDF_RenderStatus* pRenderStatus = NULL, FX_INT32 nDownsampleWidth = 0, FX_INT32 nDownsampleHeight = 0);
211 FX_BOOL Start(CPDF_ImageLoader* pImageLoader, const CPDF_ImageObject* pImage, CPDF_PageRenderCache* pCache, FX_BOOL bStdCS = FALSE, FX_DWORD GroupFamily = 0, FX_BOOL bLoadMask = FALSE, CPDF_RenderStatus* pRenderStatus = NULL, FX_INT32 nDownsampleWidth = 0, FX_INT32 nDownsampleHeight = 0);
|
fpdf_render_loadimage.cpp | [all...] |
fpdf_render_text.cpp | 327 CPDF_ImageObject* pImage = (CPDF_ImageObject*)pPageObj;
328 m_ImageMatrix = pImage->m_Matrix;
329 const CFX_DIBSource* pSource = pImage->m_pImage->LoadDIBSource();
|
/external/qemu/android/skin/ |
image.h | 70 extern void skin_image_unref( SkinImage** pimage );
|
image.c | 597 skin_image_unref( SkinImage** pimage ) 599 SkinImage* image = *pimage; 607 *pimage = NULL;
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_intra_prediction.h | 69 u8 *pImage, u32 width, 72 u32 h264bsdIntra16x16Prediction(mbStorage_t *pMb, u8 *data, u8 *pImage,
|
/external/pdfium/core/src/fxge/apple/ |
fx_quartz_device.cpp | 610 CGImageRef pImage = CGImageCreate(pBitmap1->GetWidth(),
619 CGContextClipToMask(_context, rect_usr, pImage);
626 CGImageRelease(pImage);
735 CGImageRef pImage = CGImageCreate(pBitmap1->GetWidth(),
744 CGContextClipToMask(_context, rect, pImage);
751 CGImageRelease(pImage);
[all...] |
/external/pdfium/fpdfsdk/include/ |
fsdk_baseform.h | 145 void AddImageToAppearance(const CFX_ByteString& sAPType, CPDF_Stream* pImage);
|
/external/pdfium/core/src/reflow/ |
layoutprocessor_reflow.cpp | [all...] |
autoreflow.cpp | 343 CPDF_ImageObject* pImage = (CPDF_ImageObject*)pCurObj; 344 FX_RECT imageBBox = pImage->GetBBox(&m_PDFDisplayMatrix);
|