/external/icu/icu4c/source/common/ |
D | ustrtrns.cpp | 50 UChar *pDest; in u_strFromUTF32WithSub() local 70 pDest = dest; in u_strFromUTF32WithSub() 80 if(pDest < destLimit) { in u_strFromUTF32WithSub() 81 *pDest++ = (UChar)ch; in u_strFromUTF32WithSub() 101 if(pDest < destLimit) { in u_strFromUTF32WithSub() 102 *pDest++ = (UChar)ch; in u_strFromUTF32WithSub() 108 if(pDest!=NULL && ((pDest + 2) <= destLimit)) { in u_strFromUTF32WithSub() 109 *pDest++ = U16_LEAD(ch); in u_strFromUTF32WithSub() 110 *pDest++ = U16_TRAIL(ch); in u_strFromUTF32WithSub() 125 reqLength += (int32_t)(pDest - dest); in u_strFromUTF32WithSub() [all …]
|
D | utext.cpp | 1425 UChar *pDest = dest; in utext_strFromUTF8() local 1433 while((index < srcLength)&&(pDest<pDestLimit)){ in utext_strFromUTF8() 1436 *pDest++=(UChar)ch; in utext_strFromUTF8() 1440 *(pDest++)=(UChar)ch; in utext_strFromUTF8() 1442 *(pDest++)=U16_LEAD(ch); in utext_strFromUTF8() 1443 if(pDest<pDestLimit){ in utext_strFromUTF8() 1444 *(pDest++)=U16_TRAIL(ch); in utext_strFromUTF8() 1463 reqLength+=(int32_t)(pDest - dest); in utext_strFromUTF8()
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_tile.c | 596 uint *pDest = z; in pipe_get_tile_z() local 609 memcpy(pDest, ptrc, 4 * w); in pipe_get_tile_z() 610 pDest += dstStride; in pipe_get_tile_z() 623 pDest[j] = (ptrc[j] << 8) | ((ptrc[j] >> 16) & 0xff); in pipe_get_tile_z() 625 pDest += dstStride; in pipe_get_tile_z() 638 pDest[j] = (ptrc[j] & 0xffffff00) | ((ptrc[j] >> 24) & 0xff); in pipe_get_tile_z() 640 pDest += dstStride; in pipe_get_tile_z() 652 pDest[j] = (ptrc[j] << 16) | ptrc[j]; in pipe_get_tile_z() 654 pDest += dstStride; in pipe_get_tile_z() 666 pDest[j] = 0; in pipe_get_tile_z() [all …]
|
/external/pdfium/core/fpdfdoc/ |
D | cpdf_link.cpp | 25 CPDF_Object* pDest = m_pDict->GetDirectObjectFor("Dest"); in GetDest() local 26 if (!pDest) in GetDest() 29 if (pDest->IsString() || pDest->IsName()) { in GetDest() 31 return CPDF_Dest(name_tree.LookupNamedDest(pDoc, pDest->GetUnicodeText())); in GetDest() 33 if (CPDF_Array* pArray = pDest->AsArray()) in GetDest()
|
D | cpdf_bookmark.cpp | 68 CPDF_Object* pDest = m_pDict->GetDirectObjectFor("Dest"); in GetDest() local 69 if (!pDest) in GetDest() 71 if (pDest->IsString() || pDest->IsName()) { in GetDest() 74 name_tree.LookupNamedDest(pDocument, pDest->GetUnicodeText())); in GetDest() 76 if (CPDF_Array* pArray = pDest->AsArray()) in GetDest()
|
D | cpdf_action.cpp | 38 CPDF_Object* pDest = m_pDict->GetDirectObjectFor("D"); in GetDest() local 39 if (!pDest) in GetDest() 41 if (pDest->IsString() || pDest->IsName()) { in GetDest() 43 return CPDF_Dest(name_tree.LookupNamedDest(pDoc, pDest->GetUnicodeText())); in GetDest() 45 if (CPDF_Array* pArray = pDest->AsArray()) in GetDest()
|
/external/pdfium/core/fpdfapi/render/ |
D | cpdf_transferfunc.cpp | 26 auto pDest = pdfium::MakeRetain<CPDF_DIBTransferFunc>(pHolder); in TranslateImage() local 27 pDest->LoadSrc(pSrc); in TranslateImage() 28 return pDest; in TranslateImage()
|
/external/icu/icu4c/source/test/perf/normperf/ |
D | normperf.h | 109 UChar* pDest; variable 124 retVal = (*fn)(lines[i].name,lines[i].len,pDest,destLen, options, status); in call() 128 retVal = (*fn)(lines[i].name,-1,pDest,destLen, options, status); in call() 133 retVal = (*fn)(src,srcLen,pDest,destLen, options, status); in call() 135 retVal = (*fn)(src,-1,pDest,destLen, options, status); in call() 156 pDest = dest; in NormPerfFunction() 167 pDest = (UChar*) malloc(destLen * U_SIZEOF_UCHAR); in NormPerfFunction() 173 if(dest != pDest){ in ~NormPerfFunction() 174 free(pDest); in ~NormPerfFunction()
|
/external/pdfium/core/fpdfapi/parser/ |
D | fpdf_parser_utility.cpp | 99 char* pDest = pDestStart; in PDF_NameDecode() local 102 *pDest++ = FXSYS_HexCharToInt(bstr[i + 1]) * 16 + in PDF_NameDecode() 106 *pDest++ = bstr[i]; in PDF_NameDecode() 109 result.ReleaseBuffer(static_cast<size_t>(pDest - pDestStart)); in PDF_NameDecode()
|
/external/pdfium/core/fpdfapi/page/ |
D | cpdf_image.cpp | 294 uint8_t* pDest = dest_buf; in SetImage() local 297 memcpy(pDest, src_buf, dest_pitch); in SetImage() 298 pDest += dest_pitch; in SetImage() 308 pDest[dest_offset] = (uint8_t)(src_buf[src_offset + 2] * alpha); in SetImage() 309 pDest[dest_offset + 1] = (uint8_t)(src_buf[src_offset + 1] * alpha); in SetImage() 310 pDest[dest_offset + 2] = (uint8_t)(src_buf[src_offset] * alpha); in SetImage() 315 pDest += dest_pitch; in SetImage()
|
/external/lzma/CPP/Windows/ |
D | PropVariant.cpp | 286 HRESULT CPropVariant::Detach(PROPVARIANT *pDest) throw() in Detach() argument 288 if (pDest->vt != VT_EMPTY) in Detach() 290 HRESULT hr = PropVariant_Clear(pDest); in Detach() 294 memcpy(pDest, this, sizeof(PROPVARIANT)); in Detach()
|
D | PropVariant.h | 104 HRESULT Detach(PROPVARIANT *pDest) throw();
|
/external/protobuf/php/ext/google/protobuf/ |
D | protobuf.c | 17 zval* pDest = NULL; in add_def_obj() local 20 &value, sizeof(zval*), &pDest); in add_def_obj()
|
/external/icu/icu4c/source/test/cintltst/ |
D | custrtrn.c | 989 const UChar *pu, *pDest; in Test_FromUTF8Lenient() local 998 pDest=u_strFromUTF8Lenient(dest, 1, &destLength, NULL, -1, &errorCode); in Test_FromUTF8Lenient() 1006 pDest=u_strFromUTF8Lenient(NULL, 1, &destLength, (const char *)bytes, -1, &errorCode); in Test_FromUTF8Lenient() 1014 pDest=u_strFromUTF8Lenient(dest, 1, &destLength, (const char *)bytes, -1, &errorCode); in Test_FromUTF8Lenient() 1033 pDest=u_strFromUTF8Lenient(NULL, 0, &destLength, pb, -1, &errorCode); in Test_FromUTF8Lenient() 1035 pDest!=NULL || dest[0]!=0x1234 || destLength!=destLength0 in Test_FromUTF8Lenient() 1045 pDest=u_strFromUTF8Lenient(dest, destLength0-1, &destLength, pb, -1, &errorCode); in Test_FromUTF8Lenient() 1057 pDest=u_strFromUTF8Lenient(dest, UPRV_LENGTHOF(dest), &destLength, pb, -1, &errorCode); in Test_FromUTF8Lenient() 1059 pDest!=dest || dest[destLength0]!=0 || in Test_FromUTF8Lenient() 1069 pDest=u_strFromUTF8Lenient(dest, destLength0, &destLength, pb, -1, &errorCode); in Test_FromUTF8Lenient() [all …]
|
/external/pdfium/core/fxcodec/codec/ |
D | fx_codec_icc.cpp | 147 unsigned char* pDest, in TranslateScanline() argument 151 cmsDoTransform(pTransform->m_hTransform, pSrc, pDest, pixels); in TranslateScanline()
|
D | ccodec_iccmodule.h | 45 uint8_t* pDest,
|
/external/pdfium/core/fxcrt/ |
D | bytestring.cpp | 676 char* pDest = pNewData->m_String; in Replace() local 680 memcpy(pDest, pStart, pTarget - pStart); in Replace() 681 pDest += pTarget - pStart; in Replace() 682 memcpy(pDest, pNew.unterminated_c_str(), pNew.GetLength()); in Replace() 683 pDest += pNew.GetLength(); in Replace() 686 memcpy(pDest, pStart, pEnd - pStart); in Replace()
|
D | widestring.cpp | 847 wchar_t* pDest = pNewData->m_String; in Replace() local 852 wmemcpy(pDest, pStart, pTarget - pStart); in Replace() 853 pDest += pTarget - pStart; in Replace() 854 wmemcpy(pDest, pNew.unterminated_c_str(), pNew.GetLength()); in Replace() 855 pDest += pNew.GetLength(); in Replace() 858 wmemcpy(pDest, pStart, pEnd - pStart); in Replace()
|
/external/pdfium/core/fxge/dib/ |
D | cfx_imagestretcher.cpp | 45 CFX_ImageStretcher::CFX_ImageStretcher(IFX_ScanlineComposer* pDest, in CFX_ImageStretcher() argument 51 : m_pDest(pDest), in CFX_ImageStretcher()
|
D | cfx_bitmapcomposer.cpp | 17 void CFX_BitmapComposer::Compose(const RetainPtr<CFX_DIBitmap>& pDest, in Compose() argument 28 m_pBitmap = pDest; in Compose()
|
D | cfx_imagestretcher.h | 24 CFX_ImageStretcher(IFX_ScanlineComposer* pDest,
|
D | cfx_bitmapcomposer.h | 26 void Compose(const RetainPtr<CFX_DIBitmap>& pDest,
|
/external/pdfium/fpdfsdk/ |
D | fpdfview.cpp | 1391 CPDF_Dictionary* pDest = pRoot->GetDictFor("Dests"); in FPDF_CountNamedDests() local 1392 if (pDest) in FPDF_CountNamedDests() 1393 count += pDest->GetCount(); in FPDF_CountNamedDests() 1485 CPDF_Dictionary* pDest = pRoot->GetDictFor("Dests"); in FPDF_GetNamedDest() local 1486 if (!pDest) in FPDF_GetNamedDest() 1490 checked_count += pDest->GetCount(); in FPDF_GetNamedDest() 1497 for (const auto& it : *pDest) { in FPDF_GetNamedDest()
|
/external/pdfium/core/fxcrt/css/ |
D | cfx_cssstyleselector.cpp | 85 CFX_CSSComputedStyle* pDest) { in ComputeStyle() argument 97 ApplyDeclarations(declArray, pDecl.get(), pDest); in ComputeStyle()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Interpreter/ |
D | Execution.cpp | 1938 GenericValue *pDest = &Dest; in visitInsertValueInst() local 1940 pDest = &pDest->AggregateVal[*IdxBegin]; in visitInsertValueInst() 1952 pDest->IntVal = Src2.IntVal; in visitInsertValueInst() 1955 pDest->FloatVal = Src2.FloatVal; in visitInsertValueInst() 1958 pDest->DoubleVal = Src2.DoubleVal; in visitInsertValueInst() 1963 pDest->AggregateVal = Src2.AggregateVal; in visitInsertValueInst() 1966 pDest->PointerVal = Src2.PointerVal; in visitInsertValueInst()
|