Home
last modified time | relevance | path

Searched refs:pDst (Results 1 – 25 of 30) sorted by relevance

12

/external/aac/libFDK/src/
Dfft.cpp218 FIXP_DBL *RESTRICT pDst = aDst; in fft15() local
222 pDst[k+0] = pSrc[l]; in fft15()
223 pDst[k+1] = pSrc[l+1]; in fft15()
228 pDst[k+2] = pSrc[l]; in fft15()
229 pDst[k+3] = pSrc[l+1]; in fft15()
233 pDst[k+4] = pSrc[l]; in fft15()
234 pDst[k+5] = pSrc[l+1]; in fft15()
243 r1 = pDst[k+2] + pDst[k+4]; in fft15()
244 r2 = fMult((pDst[k+2] - pDst[k+4]), C31); in fft15()
245 s1 = pDst[k+0]; in fft15()
[all …]
/external/pdfium/core/src/fpdftext/
Dunicodenormalization.cpp20 FX_STRSIZE FX_Unicode_GetNormalization(FX_WCHAR wch, FX_LPWSTR pDst) in FX_Unicode_GetNormalization() argument
25 if (pDst) { in FX_Unicode_GetNormalization()
26 *pDst = wch; in FX_Unicode_GetNormalization()
44 if (pDst) { in FX_Unicode_GetNormalization()
47 *pDst ++ = *pMap ++; in FX_Unicode_GetNormalization()
52 FX_STRSIZE FX_WideString_GetNormalization(FX_WSTR wsSrc, FX_LPWSTR pDst) in FX_WideString_GetNormalization() argument
57 if(pDst) { in FX_WideString_GetNormalization()
58 nCount += FX_Unicode_GetNormalization(wch, pDst + nCount); in FX_WideString_GetNormalization()
60 nCount += FX_Unicode_GetNormalization(wch, pDst); in FX_WideString_GetNormalization()
Dfpdf_text.cpp289 FX_LPWSTR pDst = NULL; in NormalizeCompositeChar() local
290 FX_STRSIZE nCount = FX_Unicode_GetNormalization(wChar, pDst); in NormalizeCompositeChar()
295 pDst = new FX_WCHAR[nCount]; in NormalizeCompositeChar()
296 FX_Unicode_GetNormalization(wChar, pDst); in NormalizeCompositeChar()
298 sDest += pDst[nIndex]; in NormalizeCompositeChar()
300 delete[] pDst; in NormalizeCompositeChar()
Dfpdf_text_int.cpp1163 FX_LPWSTR pDst = NULL; in AddCharInfoByLRDirection() local
1164 FX_STRSIZE nCount = FX_Unicode_GetNormalization(wChar, pDst); in AddCharInfoByLRDirection()
1166 pDst = FX_Alloc(FX_WCHAR, nCount); in AddCharInfoByLRDirection()
1167 FX_Unicode_GetNormalization(wChar, pDst); in AddCharInfoByLRDirection()
1170 Info2.m_Unicode = pDst[nIndex]; in AddCharInfoByLRDirection()
1177 FX_Free(pDst); in AddCharInfoByLRDirection()
1195 FX_LPWSTR pDst = NULL; in AddCharInfoByRLDirection() local
1196 FX_STRSIZE nCount = FX_Unicode_GetNormalization(wChar, pDst); in AddCharInfoByRLDirection()
1198 pDst = FX_Alloc(FX_WCHAR, nCount); in AddCharInfoByRLDirection()
1199 FX_Unicode_GetNormalization(wChar, pDst); in AddCharInfoByRLDirection()
[all …]
Dtext_int.h218 FX_STRSIZE FX_Unicode_GetNormalization(FX_WCHAR wch, FX_LPWSTR pDst);
/external/pdfium/core/src/fxcodec/jbig2/
DJBig2_Image.cpp114 FX_BOOL CJBig2_Image::composeTo(CJBig2_Image *pDst, FX_INT32 x, FX_INT32 y, JBig2ComposeOp op) in composeTo() argument
119 return composeTo_opt2(pDst, x, y, op); in composeTo()
121 FX_BOOL CJBig2_Image::composeTo(CJBig2_Image *pDst, FX_INT32 x, FX_INT32 y, JBig2ComposeOp op, cons… in composeTo() argument
127 return composeTo_opt2(pDst, x, y, op); in composeTo()
129 return composeTo_opt2(pDst, x, y, op, pSrcRect); in composeTo()
131 FX_BOOL CJBig2_Image::composeTo_unopt(CJBig2_Image *pDst, FX_INT32 x, FX_INT32 y, JBig2ComposeOp op) in composeTo_unopt() argument
148 if(x + w > pDst->m_nWidth) { in composeTo_unopt()
149 w = pDst->m_nWidth - x; in composeTo_unopt()
151 if(y + h > pDst->m_nHeight) { in composeTo_unopt()
152 h = pDst->m_nHeight - y; in composeTo_unopt()
[all …]
DJBig2_Image.h39 FX_BOOL composeTo(CJBig2_Image *pDst, FX_INT32 x, FX_INT32 y, JBig2ComposeOp op);
40 …FX_BOOL composeTo(CJBig2_Image *pDst, FX_INT32 x, FX_INT32 y, JBig2ComposeOp op, const FX_RECT* pS…
42 FX_BOOL composeTo_unopt(CJBig2_Image *pDst, FX_INT32 x, FX_INT32 y, JBig2ComposeOp op);
44 FX_BOOL composeTo_opt(CJBig2_Image *pDst, FX_INT32 x, FX_INT32 y, JBig2ComposeOp op);
46 FX_BOOL composeTo_opt2(CJBig2_Image *pDst, FX_INT32 x, FX_INT32 y, JBig2ComposeOp op);
47 …FX_BOOL composeTo_opt2(CJBig2_Image *pDst, FX_INT32 x, FX_INT32 y, JBig2ComposeOp op, const FX_REC…
/external/libvncserver/common/
Dzywrletemplate.c106 #define ZYWRLE_SAVE_PIXEL15(pDst,R,G,B) { \ argument
110 ((unsigned char*)pDst)[S_1] = (unsigned char)( (R>>1)|(G>>6) ); \
111 ((unsigned char*)pDst)[S_0] = (unsigned char)(((B>>3)|(G<<2))& 0xFF); \
120 #define ZYWRLE_SAVE_PIXEL16(pDst,R,G,B) { \ argument
124 ((unsigned char*)pDst)[S_1] = (unsigned char)( R |(G>>5) ); \
125 ((unsigned char*)pDst)[S_0] = (unsigned char)(((B>>3)|(G<<3))& 0xFF); \
134 #define ZYWRLE_SAVE_PIXEL32(pDst,R,G,B) { \ argument
135 ((unsigned char*)pDst)[L_2] = (unsigned char)R; \
136 ((unsigned char*)pDst)[L_1] = (unsigned char)G; \
137 ((unsigned char*)pDst)[L_0] = (unsigned char)B; \
[all …]
/external/opencv/cv/src/
D_cvipp.h52 ( const void* pSrc, int srcStep, CvSize srcRoiSize, void* pDst, int dstStep, \
172 ( const void* pSrc, int srcStep, void* pDst, int dstStep, \
178 ( const void* pSrc, int srcStep, void* pDst, int dstStep, \
573 float* pDst, int dstStep )) \
579 float* pDst, int dstStep )) \
585 float* pDst, int dstStep ))
596 ( const uchar* pSrc, int srcStep, float* pDst,
601 ( const uchar* pSrc, int srcStep, float* pDst,
610 ( const uchar* pSrc, int srcStep, uchar* pDst,
627 ( const uchar* pSrc, int srcstep, uchar* pDst, int dststep,
[all …]
/external/llvm/test/Transforms/LoopStrengthReduce/AArch64/
Dlsr-memcpy.ll20 %pDst.05 = phi i64* [ inttoptr (i64 6442450944 to i64*), %entry ], [ %incdec.ptr1, %while.body ]
24 %incdec.ptr1 = getelementptr inbounds i64, i64* %pDst.05, i64 1
25 store volatile i64 %tmp, i64* %pDst.05, align 8
/external/sonivox/arm-hybrid-22k/lib_src/
Deas_chorus.c42 static void ChorusProcess (EAS_VOID_PTR pInstData, EAS_PCM *pSrc, EAS_PCM *pDst, EAS_I32 numSamples…
252 static void ChorusProcess (EAS_VOID_PTR pInstData, EAS_PCM *pSrc, EAS_PCM *pDst, EAS_I32 numSamples) in ChorusProcess() argument
275 if (pSrc != pDst) in ChorusProcess()
276 EAS_HWMemCpy(pSrc, pDst, numSamples * NUM_OUTPUT_CHANNELS * (EAS_I32) sizeof(EAS_PCM)); in ChorusProcess()
289 pOut = pDst + nChannelNumber; in ChorusProcess()
Deas_reverb.c47 static void ReverbProcess (EAS_VOID_PTR pInstData, EAS_PCM *pSrc, EAS_PCM *pDst, EAS_I32 numSamples…
275 static void ReverbProcess(EAS_VOID_PTR pInstData, EAS_PCM *pSrc, EAS_PCM *pDst, EAS_I32 numSamples) in ReverbProcess() argument
285 if (pSrc != pDst) in ReverbProcess()
286 EAS_HWMemCpy(pSrc, pDst, numSamples * NUM_OUTPUT_CHANNELS * (EAS_I32) sizeof(EAS_PCM)); in ReverbProcess()
297 Reverb(pReverbData, numSamples, pDst, pSrc); in ReverbProcess()
Deas_mixer.c46 EAS_I32 MaximizerProcess (EAS_VOID_PTR pInstData, EAS_I32 *pSrc, EAS_I32 *pDst, EAS_I32 numSamples);
/external/sonivox/arm-wt-22k/lib_src/
Deas_chorus.c42 static void ChorusProcess (EAS_VOID_PTR pInstData, EAS_PCM *pSrc, EAS_PCM *pDst, EAS_I32 numSamples…
252 static void ChorusProcess (EAS_VOID_PTR pInstData, EAS_PCM *pSrc, EAS_PCM *pDst, EAS_I32 numSamples) in ChorusProcess() argument
275 if (pSrc != pDst) in ChorusProcess()
276 EAS_HWMemCpy(pSrc, pDst, numSamples * NUM_OUTPUT_CHANNELS * (EAS_I32) sizeof(EAS_PCM)); in ChorusProcess()
289 pOut = pDst + nChannelNumber; in ChorusProcess()
Deas_reverb.c47 static void ReverbProcess (EAS_VOID_PTR pInstData, EAS_PCM *pSrc, EAS_PCM *pDst, EAS_I32 numSamples…
275 static void ReverbProcess(EAS_VOID_PTR pInstData, EAS_PCM *pSrc, EAS_PCM *pDst, EAS_I32 numSamples) in ReverbProcess() argument
285 if (pSrc != pDst) in ReverbProcess()
286 EAS_HWMemCpy(pSrc, pDst, numSamples * NUM_OUTPUT_CHANNELS * (EAS_I32) sizeof(EAS_PCM)); in ReverbProcess()
297 Reverb(pReverbData, numSamples, pDst, pSrc); in ReverbProcess()
Deas_mixer.c46 EAS_I32 MaximizerProcess (EAS_VOID_PTR pInstData, EAS_I32 *pSrc, EAS_I32 *pDst, EAS_I32 numSamples);
/external/sonivox/arm-fm-22k/lib_src/
Deas_chorus.c42 static void ChorusProcess (EAS_VOID_PTR pInstData, EAS_PCM *pSrc, EAS_PCM *pDst, EAS_I32 numSamples…
252 static void ChorusProcess (EAS_VOID_PTR pInstData, EAS_PCM *pSrc, EAS_PCM *pDst, EAS_I32 numSamples) in ChorusProcess() argument
275 if (pSrc != pDst) in ChorusProcess()
276 EAS_HWMemCpy(pSrc, pDst, numSamples * NUM_OUTPUT_CHANNELS * (EAS_I32) sizeof(EAS_PCM)); in ChorusProcess()
289 pOut = pDst + nChannelNumber; in ChorusProcess()
Deas_reverb.c47 static void ReverbProcess (EAS_VOID_PTR pInstData, EAS_PCM *pSrc, EAS_PCM *pDst, EAS_I32 numSamples…
275 static void ReverbProcess(EAS_VOID_PTR pInstData, EAS_PCM *pSrc, EAS_PCM *pDst, EAS_I32 numSamples) in ReverbProcess() argument
285 if (pSrc != pDst) in ReverbProcess()
286 EAS_HWMemCpy(pSrc, pDst, numSamples * NUM_OUTPUT_CHANNELS * (EAS_I32) sizeof(EAS_PCM)); in ReverbProcess()
297 Reverb(pReverbData, numSamples, pDst, pSrc); in ReverbProcess()
Deas_mixer.c46 EAS_I32 MaximizerProcess (EAS_VOID_PTR pInstData, EAS_I32 *pSrc, EAS_I32 *pDst, EAS_I32 numSamples);
/external/mesa3d/src/gallium/state_trackers/xorg/
Dxorg_composite.c356 struct exa_pixmap_priv *pDst) in bind_samplers() argument
476 struct exa_pixmap_priv *pDst) in xorg_composite_bind_state() argument
478 struct pipe_surface *dst_surf = xorg_gpu_surface(exa->pipe, pDst); in xorg_composite_bind_state()
481 pDst->width, in xorg_composite_bind_state()
482 pDst->height); in xorg_composite_bind_state()
487 pDstPicture, pSrc, pMask, pDst); in xorg_composite_bind_state()
Dxorg_exa.c611 PixmapPtr pSrc, PixmapPtr pMask, PixmapPtr pDst) in ExaPrepareComposite() argument
613 ScrnInfoPtr pScrn = xf86ScreenToScrn(pDst->drawable.pScreen); in ExaPrepareComposite()
631 priv = exaGetPixmapDriverPrivate(pDst); in ExaPrepareComposite()
682 exaGetPixmapDriverPrivate(pDst)); in ExaPrepareComposite()
686 ExaComposite(PixmapPtr pDst, int srcX, int srcY, int maskX, int maskY, in ExaComposite() argument
689 ScrnInfoPtr pScrn = xf86ScreenToScrn(pDst->drawable.pScreen); in ExaComposite()
692 struct exa_pixmap_priv *priv = exaGetPixmapDriverPrivate(pDst); in ExaComposite()
Dxorg_composite.h18 struct exa_pixmap_priv *pDst);
/external/mesa3d/src/gallium/winsys/svga/drm/
Dvmw_screen_svga.c198 struct svga_winsys_surface **pDst, in vmw_svga_winsys_surface_ref() argument
201 struct vmw_svga_winsys_surface *d_vsurf = vmw_svga_winsys_surface(*pDst); in vmw_svga_winsys_surface_ref()
205 *pDst = svga_winsys_surface(d_vsurf); in vmw_svga_winsys_surface_ref()
/external/pdfium/fpdfsdk/src/
Dfpdfview.cpp384 CFX_DIBitmap* pDst = new CFX_DIBitmap; in FPDF_RenderPage() local
386 pDst->Create(size_x, size_y, FXDIB_Rgb32); in FPDF_RenderPage()
387 FXSYS_memset(pDst->GetBuffer(), -1, pitch*size_y); in FPDF_RenderPage()
388pDst->CompositeBitmap(0, 0, size_x, size_y, pBitmap, 0, 0, FXDIB_BLEND_NORMAL, NULL, FALSE, NULL); in FPDF_RenderPage()
389 WinDC.StretchDIBits(pDst,0,0,size_x,size_y); in FPDF_RenderPage()
390 delete pDst; in FPDF_RenderPage()
/external/pdfium/core/src/fxge/dib/
Dfx_dib_main.cpp609 CFX_DIBitmap* pDst = this; local
722 pDst = m_pAlphaMask;
726 int destBytes = pDst->GetBPP() / 8;
728 FX_LPBYTE dest_pos = (FX_LPBYTE)pDst->GetScanline(row) + destOffset;

12