Searched refs:pSource (Results 1 - 25 of 39) sorted by relevance

12

/external/pdfium/core/src/fxge/win32/
H A Dfx_win32_print.cpp33 FX_BOOL CGdiPrinterDriver::SetDIBits(const CFX_DIBSource* pSource, FX_DWORD color, const FX_RECT* pSrcRect, int left, int top, int blend_type, argument
36 if (pSource->IsAlphaMask()) {
38 return StretchDIBits(pSource, color, left - pSrcRect->left, top - pSrcRect->top, pSource->GetWidth(), pSource->GetHeight(),
41 ASSERT(pSource != NULL && !pSource->IsAlphaMask() && pSrcRect != NULL);
43 if (pSource->HasAlpha()) {
46 CFX_DIBExtractor temp(pSource);
53 FX_BOOL CGdiPrinterDriver::StretchDIBits(const CFX_DIBSource* pSource, FX_DWOR argument
200 StartDIBits(const CFX_DIBSource* pSource, int bitmap_alpha, FX_DWORD color, const CFX_AffineMatrix* pMatrix, FX_DWORD render_flags, FX_LPVOID& handle, int alpha_flag, void* pIccTransform, int blend_type) argument
[all...]
H A Dfx_win32_device.cpp972 FX_BOOL CGdiDisplayDriver::SetDIBits(const CFX_DIBSource* pSource, FX_DWORD color, const FX_RECT* pSrcRect, int left, int top, int blend_type, argument
976 if (pSource->IsAlphaMask()) {
977 int width = pSource->GetWidth(), height = pSource->GetHeight();
979 FX_BOOL bGDI = pSource->GetBPP() == 1 && alpha == 255;
984 !background.CompositeMask(0, 0, width, height, pSource, color, 0, 0, FXDIB_BLEND_NORMAL, NULL, FALSE, alpha_flag, pIccTransform)) {
991 return StretchDIBits(pSource, color, left - pSrcRect->left, top - pSrcRect->top, width, height,
995 if (pSource->HasAlpha()) {
999 !bitmap.CompositeBitmap(0, 0, width, height, pSource, pSrcRect->left, pSrcRect->top, FXDIB_BLEND_NORMAL, NULL, FALSE, pIccTransform)) {
1005 CFX_DIBExtractor temp(pSource);
1013 UseFoxitStretchEngine(const CFX_DIBSource* pSource, FX_DWORD color, int dest_left, int dest_top, int dest_width, int dest_height, const FX_RECT* pClipRect, int render_flags, int alpha_flag, void* pIccTransform, int blend_type) argument
1034 StretchDIBits(const CFX_DIBSource* pSource, FX_DWORD color, int dest_left, int dest_top, int dest_width, int dest_height, const FX_RECT* pClipRect, FX_DWORD flags, int alpha_flag, void* pIccTransform, int blend_type) argument
[all...]
H A Dfx_win32_gdipext.cpp287 const CFX_DIBitmap* pSource, FX_RECT* pClipRect)
309 int src_width = pSource->GetWidth();
310 int src_height = pSource->GetHeight();
317 LPBYTE src_buf = pSource->GetBuffer();
318 int src_pitch = pSource->GetPitch();
286 _StretchMonoToGray(int dest_width, int dest_height, const CFX_DIBitmap* pSource, FX_RECT* pClipRect) argument
H A Dwin32_int.h146 FX_BOOL UseFoxitStretchEngine(const CFX_DIBSource* pSource, FX_DWORD color, int dest_left, int dest_top,
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_ps.cpp308 FX_BOOL CFX_PSRenderer::SetDIBits(const CFX_DIBSource* pSource, FX_DWORD color, int left, int top, argument
312 CFX_AffineMatrix matrix((FX_FLOAT)(pSource->GetWidth()), 0.0f, 0.0f, -(FX_FLOAT)(pSource->GetHeight()),
313 (FX_FLOAT)(left), (FX_FLOAT)(top + pSource->GetHeight()));
314 return DrawDIBits(pSource, color, &matrix, 0, alpha_flag, pIccTransform);
316 FX_BOOL CFX_PSRenderer::StretchDIBits(const CFX_DIBSource* pSource, FX_DWORD color, int dest_left, int dest_top, argument
323 return DrawDIBits(pSource, color, &matrix, flags, alpha_flag, pIccTransform);
325 FX_BOOL CFX_PSRenderer::DrawDIBits(const CFX_DIBSource* pSource, FX_DWORD color, argument
333 if (pSource->HasAlpha()) {
337 if (pSource
[all...]
/external/chromium_org/third_party/webrtc/modules/video_render/android/
H A Dvideo_render_opengles20.h35 GLuint loadShader(GLenum shaderType, const char* pSource);
H A Dvideo_render_opengles20.cc242 const char* pSource) {
245 glShaderSource(shader, 1, &pSource, NULL);
241 loadShader(GLenum shaderType, const char* pSource) argument
/external/pdfium/core/include/fxcodec/
H A Dfx_codec_provider.h33 virtual FX_BOOL Encode(const class CFX_DIBSource* pSource, FX_LPBYTE& dest_buf, FX_STRSIZE& dest_size, int quality = 75,
H A Dfx_codec.h164 virtual FX_BOOL Encode(const class CFX_DIBSource* pSource, FX_LPBYTE& dest_buf, FX_STRSIZE& dest_size, int quality = 75,
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_jpeg.cpp177 static void _JpegEncode(const CFX_DIBSource* pSource, FX_LPBYTE& dest_buf, FX_STRSIZE& dest_size, int quality, FX_LPCBYTE icc_buf, FX_DWORD icc_length) argument
188 int Bpp = pSource->GetBPP() / 8;
189 int nComponents = Bpp >= 3 ? (pSource->IsCmykImage() ? 4 : 3) : 1;
190 int pitch = pSource->GetPitch();
191 int width = pSource->GetWidth();
192 int height = pSource->GetHeight();
233 FX_LPCBYTE src_scan = pSource->GetScanline(cinfo.next_scanline);
570 FX_BOOL CCodec_JpegModule::Encode(const CFX_DIBSource* pSource, FX_LPBYTE& dest_buf, FX_STRSIZE& dest_size, int quality, FX_LPCBYTE icc_buf, FX_DWORD icc_length) argument
573 return m_pExtProvider->Encode(pSource, dest_buf, dest_size, quality, icc_buf, icc_length);
575 if(pSource
[all...]
H A Dcodec_int.h141 FX_BOOL Encode(const CFX_DIBSource* pSource, FX_LPBYTE& dest_buf, FX_STRSIZE& dest_size, int quality, FX_LPCBYTE icc_buf, FX_DWORD icc_length);
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DVectorMath.cpp144 __m128 pSource;
154 pSource = _mm_load_ps(sourceP); \
155 temp = _mm_mul_ps(pSource, mScale); \
216 __m128* pSource;
223 pSource = reinterpret_cast<__m128*>(const_cast<float*>(sourceP));
224 dest = _mm_mul_ps(*pSource, mScale);
232 pSource = reinterpret_cast<__m128*>(const_cast<float*>(sourceP));
234 *pDest = _mm_mul_ps(*pSource, mScale);
/external/pdfium/core/src/fxge/dib/
H A Dfx_dib_engine.cpp714 const CFX_DIBSource* pSource, int dest_width, int dest_height,
717 m_DestFormat = _GetStretchedFormat(pSource);
720 m_pSource = pSource;
725 if (pSource->GetFormat() == FXDIB_1bppRgb && pSource->GetPalette()) {
728 ArgbDecode(pSource->GetPaletteEntry(0), a0, r0, g0, b0);
729 ArgbDecode(pSource->GetPaletteEntry(1), a1, r1, g1, b1);
740 } else if (pSource->GetFormat() == FXDIB_1bppCmyk && pSource->GetPalette()) {
743 CmykDecode(pSource
713 Start(IFX_ScanlineComposer* pDest, const CFX_DIBSource* pSource, int dest_width, int dest_height, const FX_RECT& rect, FX_DWORD flags) argument
[all...]
H A Dfx_dib_main.cpp1577 const CFX_DIBSource* pSource, int bitmap_alpha,
1612 if (!m_Stretcher.Start(&m_Composer, pSource, dest_height, dest_width, bitmap_clip, dib_flags)) {
1623 m_pTransformer->Start(pSource, &m_Matrix, dib_flags, &m_ClipBox);
1642 ret = m_Stretcher.Start(&m_Composer, pSource, dest_width, dest_height, bitmap_clip, dib_flags);
1576 Start(CFX_DIBitmap* pDevice, const CFX_ClipRgn* pClipRgn, const CFX_DIBSource* pSource, int bitmap_alpha, FX_DWORD mask_color, const CFX_AffineMatrix* pMatrix, FX_DWORD dib_flags, FX_BOOL bRgbByteOrder, int alpha_flag, void* pIccTransform, int blend_type) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
H A DAlgorithmParametersSpi.java63 PSource.PSpecified pSource = (PSource.PSpecified)currentSpec.getPSource();
65 PKCSObjectIdentifiers.id_pSpecified, new DEROctetString(pSource.getValue()));
/external/pdfium/fpdfsdk/src/javascript/
H A DJS_EventHandler.cpp233 void CJS_EventHandler::OnField_Calculate(CPDF_FormField* pSource, CPDF_FormField* pTarget, argument
238 if (pSource)
239 m_strSourceName = pSource->GetFullName();
H A DJS_Context.cpp238 void CJS_Context::OnField_Calculate(CPDF_FormField* pSource, CPDF_FormField* pTarget, CFX_WideString& Value, FX_BOOL& bRc) argument
241 m_pEventHandler->OnField_Calculate(pSource, pTarget, Value, bRc);
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_text.cpp329 const CFX_DIBSource* pSource = pImage->m_pImage->LoadDIBSource(); local
330 if (pSource) {
331 m_pBitmap = pSource->Clone();
332 delete pSource;
H A Dfpdf_render_loadimage.cpp33 CPDF_DIBSource* pSource = FX_NEW CPDF_DIBSource; local
34 if (pSource->Load(m_pDocument, m_pStream, (CPDF_DIBSource**)ppMask, pMatteColor, NULL, NULL, bStdCS, GroupFamily, bLoadMask)) {
35 return pSource;
37 delete pSource;
/external/pdfium/fpdfsdk/include/javascript/
H A DIJavaScript.h38 virtual void OnField_Calculate(CPDF_FormField* pSource, CPDF_FormField* pTarget, CFX_WideString& Value, FX_BOOL& bRc) = 0;
H A DJS_Context.h45 virtual void OnField_Calculate(CPDF_FormField* pSource, CPDF_FormField* pTarget, CFX_WideString& Value, FX_BOOL& bRc);
H A DJS_EventHandler.h75 void OnField_Calculate(CPDF_FormField* pSource, CPDF_FormField* pTarget, CFX_WideString& Value, FX_BOOL& bRc);
/external/pdfium/core/src/fxge/agg/agg23/
H A Dfx_agg_driver.cpp1539 FX_BOOL CFX_AggDeviceDriver::StretchDIBits(const CFX_DIBSource* pSource, FX_DWORD argb, int dest_left, int dest_top,
1546 if (dest_width == pSource->GetWidth() && dest_height == pSource->GetHeight()) {
1548 return SetDIBits(pSource, argb, &rect, dest_left, dest_top, blend_type, alpha_flag, pIccTransform);
1558 if (stretcher.Start(&composer, pSource, dest_width, dest_height, dest_clip, flags)) {
1563 FX_BOOL CFX_AggDeviceDriver::StartDIBits(const CFX_DIBSource* pSource, int bitmap_alpha, FX_DWORD argb,
1574 pRenderer->Start(m_pBitmap, m_pClipRgn, pSource, bitmap_alpha, argb, pMatrix, render_flags, m_bRgbByteOrder, alpha_flag, pIccTransform);
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfts1.c584 const char *pSource, int nSource){
591 /* Describe slice in d to place pSource/nSource. */
617 memcpy(pTarget, pSource, nSource);
654 char *pSource = updateReader.p; local
657 docListSpliceElement(&accReader, iDocid, pSource, updateReader.p-pSource);
583 docListSpliceElement(DocListReader *r, sqlite_int64 iDocid, const char *pSource, int nSource) argument
/external/chromium_org/third_party/icu/source/tools/genrb/
H A Dparse.cpp433 const UChar *pSource = NULL; local
479 pSource = ucbuf_getBuffer(ucbuf, &size, status);
484 size = utrans_stripRules(pSource, size, pTarget, status);

Completed in 5774 milliseconds

12