/external/aac/libFDK/src/ |
D | fft.cpp | 218 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/xfa/src/fgas/src/crt/ |
D | fx_encode.cpp | 30 FX_WCHAR* pDst, in FX_SwapByteOrderCopy() argument 32 FXSYS_assert(pSrc != NULL && pDst != NULL); in FX_SwapByteOrderCopy() 42 *pDst++ = wch; in FX_SwapByteOrderCopy() 48 *pDst++ = wch; in FX_SwapByteOrderCopy() 58 FX_WCHAR* pDst = (FX_WCHAR*)pBuffer; in FX_UTF16ToWChar() local 60 pDst[iLength] = (FX_WCHAR)pSrc[iLength]; in FX_UTF16ToWChar() 81 FX_WORD* pDst = (FX_WORD*)pBuffer; in FX_WCharToUTF16() local 83 *pDst++ = (FX_WORD)*pSrc++; in FX_WCharToUTF16() 107 FX_WCHAR* pDst, in FX_DecodeString() argument 111 return FX_UTF8Decode(pSrc, pSrcLen, pDst, pDstLen); in FX_DecodeString() [all …]
|
D | fx_algorithm.cpp | 52 int32_t FX_Base64EncodeA(const uint8_t* pSrc, int32_t iSrcLen, FX_CHAR* pDst) { in FX_Base64EncodeA() argument 57 if (pDst == NULL) { in FX_Base64EncodeA() 66 FX_CHAR* pDstEnd = pDst; in FX_Base64EncodeA() 85 return pDstEnd - pDst; in FX_Base64EncodeA() 140 int32_t FX_Base64DecodeA(const FX_CHAR* pSrc, int32_t iSrcLen, uint8_t* pDst) { in FX_Base64DecodeA() argument 151 if (pDst == NULL) { in FX_Base64DecodeA() 166 uint8_t* pDstEnd = pDst; in FX_Base64DecodeA() 194 return pDstEnd - pDst; in FX_Base64DecodeA() 196 int32_t FX_Base64DecodeW(const FX_WCHAR* pSrc, int32_t iSrcLen, uint8_t* pDst) { in FX_Base64DecodeW() argument 207 if (pDst == NULL) { in FX_Base64DecodeW() [all …]
|
D | fx_system.cpp | 145 void FX_memcpy(void* pDst, const void* pSrc, size_t size) { in FX_memcpy() argument 146 FXSYS_assert(pDst != NULL && pSrc != NULL && size > 0 && (size & 0x03) == 0); in FX_memcpy() 147 FXSYS_assert((((size_t)pDst) & 0x03) == 0 && (((size_t)pSrc) & 0x03) == 0); in FX_memcpy() 148 FX_DWORD* pStart = (FX_DWORD*)pDst; in FX_memcpy()
|
D | fx_utils.cpp | 94 uint8_t* pDst = m_pData->pBuffer + iBlockCount * iBlockSize; in Append() local 96 FX_memcpy(pDst, src.m_pData->pBuffer + iStart * iBlockSize, in Append()
|
/external/pdfium/core/src/fpdftext/ |
D | unicodenormalization.cpp | 17 FX_STRSIZE FX_Unicode_GetNormalization(FX_WCHAR wch, FX_WCHAR* pDst) { in FX_Unicode_GetNormalization() argument 21 if (pDst) { in FX_Unicode_GetNormalization() 22 *pDst = wch; in FX_Unicode_GetNormalization() 40 if (pDst) { in FX_Unicode_GetNormalization() 43 *pDst++ = *pMap++; in FX_Unicode_GetNormalization() 49 FX_WCHAR* pDst) { in FX_WideString_GetNormalization() argument 53 if (pDst) { in FX_WideString_GetNormalization() 54 nCount += FX_Unicode_GetNormalization(wch, pDst + nCount); in FX_WideString_GetNormalization() 56 nCount += FX_Unicode_GetNormalization(wch, pDst); in FX_WideString_GetNormalization()
|
D | fpdf_text.cpp | 299 FX_WCHAR* pDst = NULL; in NormalizeCompositeChar() local 300 FX_STRSIZE nCount = FX_Unicode_GetNormalization(wChar, pDst); in NormalizeCompositeChar() 305 pDst = new FX_WCHAR[nCount]; in NormalizeCompositeChar() 306 FX_Unicode_GetNormalization(wChar, pDst); in NormalizeCompositeChar() 308 sDest += pDst[nIndex]; in NormalizeCompositeChar() 310 delete[] pDst; in NormalizeCompositeChar()
|
D | fpdf_text_int.cpp | 1000 FX_WCHAR* pDst = NULL; in AddCharInfoByLRDirection() local 1001 FX_STRSIZE nCount = FX_Unicode_GetNormalization(wChar, pDst); in AddCharInfoByLRDirection() 1003 pDst = FX_Alloc(FX_WCHAR, nCount); in AddCharInfoByLRDirection() 1004 FX_Unicode_GetNormalization(wChar, pDst); in AddCharInfoByLRDirection() 1007 Info2.m_Unicode = pDst[nIndex]; in AddCharInfoByLRDirection() 1014 FX_Free(pDst); in AddCharInfoByLRDirection() 1031 FX_WCHAR* pDst = NULL; in AddCharInfoByRLDirection() local 1032 FX_STRSIZE nCount = FX_Unicode_GetNormalization(wChar, pDst); in AddCharInfoByRLDirection() 1034 pDst = FX_Alloc(FX_WCHAR, nCount); in AddCharInfoByRLDirection() 1035 FX_Unicode_GetNormalization(wChar, pDst); in AddCharInfoByRLDirection() [all …]
|
/external/pdfium/core/src/fxcodec/jbig2/ |
D | JBig2_Image.cpp | 109 FX_BOOL CJBig2_Image::composeTo(CJBig2_Image* pDst, in composeTo() argument 116 return composeTo_opt2(pDst, x, y, op); in composeTo() 118 FX_BOOL CJBig2_Image::composeTo(CJBig2_Image* pDst, in composeTo() argument 127 return composeTo_opt2(pDst, x, y, op); in composeTo() 129 return composeTo_opt2(pDst, x, y, op, pSrcRect); in composeTo() 160 uint8_t *pSrc, *pSrcEnd, *pDst, *pDstEnd; in subImage() local 180 pDst = pLineDst; in subImage() 182 for (; pDst < pDstEnd; pSrc += 4, pDst += 4) { in subImage() 183 *((FX_DWORD*)pDst) = *((FX_DWORD*)pSrc); in subImage() 192 pDst = pLineDst; in subImage() [all …]
|
D | JBig2_Image.h | 39 FX_BOOL composeTo(CJBig2_Image* pDst, 43 FX_BOOL composeTo(CJBig2_Image* pDst, 49 FX_BOOL composeTo_opt2(CJBig2_Image* pDst, 53 FX_BOOL composeTo_opt2(CJBig2_Image* pDst,
|
/external/libvncserver/common/ |
D | zywrletemplate.c | 106 #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/pdfium/xfa/src/fgas/include/ |
D | fx_alg.h | 13 int32_t FX_Base64EncodeA(const uint8_t* pSrc, int32_t iSrcLen, FX_CHAR* pDst); 14 int32_t FX_Base64DecodeA(const FX_CHAR* pSrc, int32_t iSrcLen, uint8_t* pDst); 15 int32_t FX_Base64DecodeW(const FX_WCHAR* pSrc, int32_t iSrcLen, uint8_t* pDst);
|
D | fx_cpg.h | 140 FX_WCHAR* pDst, 153 FX_WCHAR* pDst, 158 FX_WCHAR* pDst,
|
D | fx_sys.h | 51 void FX_memcpy(void* pDst, const void* pSrc, size_t size);
|
/external/opencv/cv/src/ |
D | _cvipp.h | 52 ( 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/ |
D | lsr-memcpy.ll | 20 %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/pdfium/xfa/src/fwl/src/core/ |
D | fwl_noteimp.cpp | 542 IFWL_Widget* pDst = pMsg->m_pDstTarget; in DoDeactivate() local 543 if (!pDst) in DoDeactivate() 546 if (pDst == pMessageForm && pDst->IsInstance(L"FWL_FORMPROXY")) { in DoDeactivate() 550 return pDst != pMessageForm && in DoDeactivate() 551 !pDst->IsInstance(FX_WSTRC(L"FWL_FORMPROXY")) && in DoDeactivate() 666 IFWL_Widget* pDst = in DoWheel() local 668 if (!pDst) in DoWheel() 670 while (pDst && pDst->GetClassID() == FWL_CLASSHASH_Grid) { in DoWheel() 671 pDst = pDst->GetParent(); in DoWheel() 673 pMessageForm->TransformTo(pDst, pMsg->m_fx, pMsg->m_fy); in DoWheel() [all …]
|
/external/sonivox/arm-wt-22k/lib_src/ |
D | eas_chorus.c | 42 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()
|
D | eas_reverb.c | 47 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()
|
/external/mesa3d/src/gallium/state_trackers/xorg/ |
D | xorg_composite.c | 356 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()
|
D | xorg_composite.h | 18 struct exa_pixmap_priv *pDst);
|
D | xorg_exa.c | 611 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()
|
/external/libgdx/gdx/jni/gdx2d/ |
D | jpgd.cpp | 663 static inline void add_and_store(jpgd_block_t* pDst, const Matrix44& a, const Matrix44& b) in add_and_store() 667 pDst[0*8 + r] = static_cast<jpgd_block_t>(a.at(r, 0) + b.at(r, 0)); in add_and_store() 668 pDst[1*8 + r] = static_cast<jpgd_block_t>(a.at(r, 1) + b.at(r, 1)); in add_and_store() 669 pDst[2*8 + r] = static_cast<jpgd_block_t>(a.at(r, 2) + b.at(r, 2)); in add_and_store() 670 pDst[3*8 + r] = static_cast<jpgd_block_t>(a.at(r, 3) + b.at(r, 3)); in add_and_store() 674 static inline void sub_and_store(jpgd_block_t* pDst, const Matrix44& a, const Matrix44& b) in sub_and_store() 678 pDst[0*8 + r] = static_cast<jpgd_block_t>(a.at(r, 0) - b.at(r, 0)); in sub_and_store() 679 pDst[1*8 + r] = static_cast<jpgd_block_t>(a.at(r, 1) - b.at(r, 1)); in sub_and_store() 680 pDst[2*8 + r] = static_cast<jpgd_block_t>(a.at(r, 2) - b.at(r, 2)); in sub_and_store() 681 pDst[3*8 + r] = static_cast<jpgd_block_t>(a.at(r, 3) - b.at(r, 3)); in sub_and_store() [all …]
|
/external/mesa3d/src/gallium/winsys/svga/drm/ |
D | vmw_screen_svga.c | 198 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/ |
D | fpdfview.cpp | 562 CFX_DIBitmap* pDst = new CFX_DIBitmap; in FPDF_RenderPage() local 564 pDst->Create(size_x, size_y, FXDIB_Rgb32); in FPDF_RenderPage() 565 FXSYS_memset(pDst->GetBuffer(), -1, pitch * size_y); in FPDF_RenderPage() 566 pDst->CompositeBitmap(0, 0, size_x, size_y, pBitmap, 0, 0, in FPDF_RenderPage() 568 WinDC.StretchDIBits(pDst, 0, 0, size_x, size_y); in FPDF_RenderPage() 569 delete pDst; in FPDF_RenderPage()
|