Searched refs:nComps (Results 1 - 11 of 11) sorted by relevance

/external/pdfium/core/include/fxcodec/
H A Dfx_codec_provider.h15 virtual void* CreateDecoder(FX_LPCBYTE src_buf, FX_DWORD src_size, int width, int height, int nComps, FX_BOOL ColorTransform) = 0;
42 virtual int ReadHeader(void* pContext, int* width, int* height, int* nComps) = 0;
H A Dfx_codec.h93 int nComps, int bpc) = 0;
127 int nComps, int bpc, int predictor, int Colors, int BitsPerComponent, int Columns) = 0;
158 int width, int height, int nComps, FX_BOOL ColorTransform) = 0;
173 virtual int ReadHeader(void* pContext, int* width, int* height, int* nComps) = 0;
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec.cpp258 FX_BOOL Create(FX_LPCBYTE src_buf, FX_DWORD src_size, int width, int height, int nComps, int bpc);
324 FX_BOOL CCodec_RLScanlineDecoder::Create(FX_LPCBYTE src_buf, FX_DWORD src_size, int width, int height, int nComps, int bpc) argument
330 m_nComps = nComps;
334 m_Pitch = (width * nComps * bpc + 31) / 32 * 4;
335 m_dwLineBytes = (width * nComps * bpc + 7) / 8;
436 int nComps, int bpc)
442 if (!pRLScanlineDecoder->Create(src_buf, src_size, width, height, nComps, bpc)) {
435 CreateRunLengthDecoder(FX_LPCBYTE src_buf, FX_DWORD src_size, int width, int height, int nComps, int bpc) argument
H A Dcodec_int.h16 int nComps, int bpc);
119 int nComps, int bpc, int predictor, int Colors, int BitsPerComponent, int Columns);
137 int width, int height, int nComps, FX_BOOL ColorTransform);
145 virtual int ReadHeader(void* pContext, int* width, int* height, int* nComps);
H A Dfx_codec_jpeg.cpp332 FX_BOOL Create(FX_LPCBYTE src_buf, FX_DWORD src_size, int width, int height, int nComps,
419 int nComps, FX_BOOL ColorTransform, IFX_JpegProvider* pJP)
423 m_pExtContext = m_pExtProvider->CreateDecoder(src_buf, src_size, width, height, nComps, ColorTransform);
449 if (cinfo.num_components < nComps) {
544 int width, int height, int nComps, FX_BOOL ColorTransform)
553 if (!pDecoder->Create(src_buf, src_size, width, height, nComps, ColorTransform, m_pExtProvider)) {
678 int CCodec_JpegModule::ReadHeader(void* pContext, int* width, int* height, int* nComps) argument
681 return m_pExtProvider->ReadHeader(pContext, width, height, nComps);
696 *nComps = p->m_Info.num_components;
418 Create(FX_LPCBYTE src_buf, FX_DWORD src_size, int width, int height, int nComps, FX_BOOL ColorTransform, IFX_JpegProvider* pJP) argument
543 CreateDecoder(FX_LPCBYTE src_buf, FX_DWORD src_size, int width, int height, int nComps, FX_BOOL ColorTransform) argument
H A Dfx_codec_flate.cpp574 FX_BOOL Create(FX_LPCBYTE src_buf, FX_DWORD src_size, int width, int height, int nComps, int bpc,
622 int nComps, int bpc, int predictor, int Colors, int BitsPerComponent, int Columns)
628 m_nComps = nComps;
631 m_Pitch = (width * nComps * bpc + 7) / 8;
851 int nComps, int bpc, int predictor, int Colors, int BitsPerComponent, int Columns)
857 pDecoder->Create(src_buf, src_size, width, height, nComps, bpc, predictor, Colors, BitsPerComponent, Columns);
621 Create(FX_LPCBYTE src_buf, FX_DWORD src_size, int width, int height, int nComps, int bpc, int predictor, int Colors, int BitsPerComponent, int Columns) argument
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_pattern.cpp154 int nComps = pCS->CountComponents(); local
155 if (nComps > 8) {
158 m_nComps = nFuncs ? 1 : nComps;
H A Dfpdf_page_colors.cpp937 int nComps = m_pAltCS->CountComponents(); local
938 CFX_FixedBufGrow<FX_FLOAT, 16> results(nComps);
939 for (int i = 0; i < nComps; i ++) {
1246 int nComps = 3; local
1248 nComps = 1;
1250 nComps = 4;
1252 m_pBuffer = FX_Alloc(FX_FLOAT, nComps);
1253 for (int i = 0; i < nComps; i ++) {
/external/pdfium/core/src/fpdfapi/fpdf_parser/
H A Dfpdf_parser_decode.cpp240 int nComps, int bpc, const CPDF_Dictionary* pParams)
256 nComps, bpc, predictor, Colors, BitsPerComponent, Columns);
239 FPDFAPI_CreateFlateDecoder(FX_LPCBYTE src_buf, FX_DWORD src_size, int width, int height, int nComps, int bpc, const CPDF_Dictionary* pParams) argument
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_image.cpp908 int nComps, int bpc, const CPDF_Dictionary* pParams);
H A Dfpdf_render_loadimage.cpp577 int nComps, int bpc, const CPDF_Dictionary* pParams);

Completed in 183 milliseconds