/external/icu/icu4c/source/common/ |
D | ustrtrns.cpp | 48 UChar *pDest; in u_strFromUTF32WithSub() local 68 pDest = dest; in u_strFromUTF32WithSub() 78 if(pDest < destLimit) { in u_strFromUTF32WithSub() 79 *pDest++ = (UChar)ch; in u_strFromUTF32WithSub() 99 if(pDest < destLimit) { in u_strFromUTF32WithSub() 100 *pDest++ = (UChar)ch; in u_strFromUTF32WithSub() 106 if(pDest!=NULL && ((pDest + 2) <= destLimit)) { in u_strFromUTF32WithSub() 107 *pDest++ = U16_LEAD(ch); in u_strFromUTF32WithSub() 108 *pDest++ = U16_TRAIL(ch); in u_strFromUTF32WithSub() 123 reqLength += (int32_t)(pDest - dest); in u_strFromUTF32WithSub() [all …]
|
D | utext.cpp | 1411 UChar *pDest = dest; in utext_strFromUTF8() local 1419 while((index < srcLength)&&(pDest<pDestLimit)){ in utext_strFromUTF8() 1422 *pDest++=(UChar)ch; in utext_strFromUTF8() 1426 *(pDest++)=(UChar)ch; in utext_strFromUTF8() 1428 *(pDest++)=U16_LEAD(ch); in utext_strFromUTF8() 1429 if(pDest<pDestLimit){ in utext_strFromUTF8() 1430 *(pDest++)=U16_TRAIL(ch); in utext_strFromUTF8() 1449 reqLength+=(int32_t)(pDest - dest); in utext_strFromUTF8()
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_tile.c | 613 uint *pDest = z; in pipe_get_tile_z() local 632 memcpy(pDest, ptrc, 4 * w); in pipe_get_tile_z() 633 pDest += dstStride; in pipe_get_tile_z() 646 pDest[j] = (ptrc[j] << 8) | ((ptrc[j] >> 16) & 0xff); in pipe_get_tile_z() 648 pDest += dstStride; in pipe_get_tile_z() 661 pDest[j] = (ptrc[j] & 0xffffff00) | ((ptrc[j] >> 24) & 0xff); in pipe_get_tile_z() 663 pDest += dstStride; in pipe_get_tile_z() 675 pDest[j] = (ptrc[j] << 16) | ptrc[j]; in pipe_get_tile_z() 677 pDest += dstStride; in pipe_get_tile_z() 689 pDest[j] = 0; in pipe_get_tile_z() [all …]
|
/external/pdfium/core/src/fpdfdoc/ |
D | doc_link.cpp | 75 CPDF_Object* pDest = m_pDict->GetElementValue("Dest"); in GetDest() local 76 if (!pDest) in GetDest() 79 if (pDest->IsString() || pDest->IsName()) { in GetDest() 81 CFX_ByteStringC name = pDest->GetString(); in GetDest() 84 if (CPDF_Array* pArray = pDest->AsArray()) in GetDest()
|
D | doc_bookmark.cpp | 74 CPDF_Object* pDest = m_pDict->GetElementValue("Dest"); in GetDest() local 75 if (!pDest) in GetDest() 77 if (pDest->IsString() || pDest->IsName()) { in GetDest() 79 CFX_ByteStringC name = pDest->GetString(); in GetDest() 82 if (CPDF_Array* pArray = pDest->AsArray()) in GetDest()
|
D | doc_action.cpp | 17 CPDF_Object* pDest = m_pDict->GetElementValue("D"); in GetDest() local 18 if (!pDest) { in GetDest() 21 if (pDest->IsString() || pDest->IsName()) { in GetDest() 23 CFX_ByteStringC name = pDest->GetString(); in GetDest() 26 if (CPDF_Array* pArray = pDest->AsArray()) in GetDest()
|
/external/pdfium/core/src/fpdfapi/fpdf_edit/ |
D | fpdf_edit_image.cpp | 326 uint8_t* pDest = dest_buf; in SetImage() local 329 FXSYS_memcpy(pDest, src_buf, dest_pitch); in SetImage() 330 pDest += dest_pitch; in SetImage() 344 uint8_t* pDest = dest_buf; in SetImage() local 351 pDest[dest_offset] = (uint8_t)(src_buf[src_offset + 2] * alpha); in SetImage() 352 pDest[dest_offset + 1] = (uint8_t)(src_buf[src_offset + 1] * alpha); in SetImage() 353 pDest[dest_offset + 2] = (uint8_t)(src_buf[src_offset] * alpha); in SetImage() 358 pFileWrite->WriteBlock(pDest, dest_pitch); in SetImage() 359 pDest = dest_buf; in SetImage() 361 pDest += dest_pitch; in SetImage()
|
/external/icu/icu4c/source/test/perf/normperf/ |
D | normperf.h | 105 UChar* pDest; variable 120 retVal = (*fn)(lines[i].name,lines[i].len,pDest,destLen, options, status); in call() 124 retVal = (*fn)(lines[i].name,-1,pDest,destLen, options, status); in call() 129 retVal = (*fn)(src,srcLen,pDest,destLen, options, status); in call() 131 retVal = (*fn)(src,-1,pDest,destLen, options, status); in call() 152 pDest = dest; in NormPerfFunction() 163 pDest = (UChar*) malloc(destLen * U_SIZEOF_UCHAR); in NormPerfFunction() 169 if(dest != pDest){ in ~NormPerfFunction() 170 free(pDest); in ~NormPerfFunction()
|
/external/libnfc-nxp/src/ |
D | phFriNfc_Llcp.c | 98 phNfc_sData_t * pDest = NULL; in phFriNfc_Llcp_AllocateAndCopy() local 105 pDest = phOsalNfc_GetMemory(sizeof(phNfc_sData_t)); in phFriNfc_Llcp_AllocateAndCopy() 106 if (pDest == NULL) in phFriNfc_Llcp_AllocateAndCopy() 111 pDest->buffer = phOsalNfc_GetMemory(pOrig->length); in phFriNfc_Llcp_AllocateAndCopy() 112 if (pDest->buffer == NULL) in phFriNfc_Llcp_AllocateAndCopy() 117 memcpy(pDest->buffer, pOrig->buffer, pOrig->length); in phFriNfc_Llcp_AllocateAndCopy() 118 pDest->length = pOrig->length; in phFriNfc_Llcp_AllocateAndCopy() 120 return pDest; in phFriNfc_Llcp_AllocateAndCopy() 123 if (pDest != NULL) in phFriNfc_Llcp_AllocateAndCopy() 125 if (pDest->buffer != NULL) in phFriNfc_Llcp_AllocateAndCopy() [all …]
|
/external/lzma/CPP/Windows/ |
D | PropVariant.cpp | 239 HRESULT CPropVariant::Detach(PROPVARIANT *pDest) throw() in Detach() argument 241 if (pDest->vt != VT_EMPTY) in Detach() 243 HRESULT hr = PropVariant_Clear(pDest); in Detach() 247 memcpy(pDest, this, sizeof(PROPVARIANT)); in Detach()
|
D | PropVariant.h | 97 HRESULT Detach(PROPVARIANT *pDest) throw();
|
/external/icu/icu4c/source/test/cintltst/ |
D | custrtrn.c | 986 const UChar *pu, *pDest; in Test_FromUTF8Lenient() local 995 pDest=u_strFromUTF8Lenient(dest, 1, &destLength, NULL, -1, &errorCode); in Test_FromUTF8Lenient() 1003 pDest=u_strFromUTF8Lenient(NULL, 1, &destLength, (const char *)bytes, -1, &errorCode); in Test_FromUTF8Lenient() 1011 pDest=u_strFromUTF8Lenient(dest, 1, &destLength, (const char *)bytes, -1, &errorCode); in Test_FromUTF8Lenient() 1019 pDest=u_strFromUTF8Lenient(dest, 1, &destLength, (const char *)bytes, -1, NULL); in Test_FromUTF8Lenient() 1038 pDest=u_strFromUTF8Lenient(NULL, 0, &destLength, pb, -1, &errorCode); in Test_FromUTF8Lenient() 1040 pDest!=NULL || dest[0]!=0x1234 || destLength!=destLength0 in Test_FromUTF8Lenient() 1050 pDest=u_strFromUTF8Lenient(dest, destLength0-1, &destLength, pb, -1, &errorCode); in Test_FromUTF8Lenient() 1062 pDest=u_strFromUTF8Lenient(dest, UPRV_LENGTHOF(dest), &destLength, pb, -1, &errorCode); in Test_FromUTF8Lenient() 1064 pDest!=dest || dest[destLength0]!=0 || in Test_FromUTF8Lenient() [all …]
|
/external/pdfium/core/src/fpdfapi/fpdf_parser/ |
D | fpdf_parser_utility.cpp | 290 FX_CHAR* pDest = pDestStart; in PDF_NameDecode() local 293 *pDest++ = in PDF_NameDecode() 297 *pDest++ = pSrc[i]; in PDF_NameDecode() 300 result.ReleaseBuffer((FX_STRSIZE)(pDest - pDestStart)); in PDF_NameDecode()
|
/external/opencv3/samples/winrt/ImageManipulations/MediaExtensions/OcvTransform/ |
D | OcvTransform.cpp | 1281 BYTE *pDest = NULL; // Destination buffer. in OnProcessOutput() local 1308 hr = outputLock.LockBuffer(lDefaultStride, m_imageHeightInPixels, &pDest, &lDestStride); in OnProcessOutput() 1316 …_imageHeightInPixels + m_imageHeightInPixels/2, m_imageWidthInPixels, CV_8UC1, pDest, lDestStride); in OnProcessOutput() 1354 … cv::Mat OutputY(m_imageHeightInPixels, m_imageWidthInPixels, CV_8UC1, pDest, lDestStride); in OnProcessOutput() 1356 CV_8UC2, pDest+m_imageHeightInPixels*lDestStride, lDestStride); in OnProcessOutput()
|
/external/pdfium/core/src/fxcrt/ |
D | fx_basic_bstring.cpp | 882 FX_CHAR* pDest = pNewData->m_String; in Replace() local 886 FXSYS_memcpy(pDest, pStart, pTarget - pStart); in Replace() 887 pDest += pTarget - pStart; in Replace() 888 FXSYS_memcpy(pDest, lpszNew.GetCStr(), lpszNew.GetLength()); in Replace() 889 pDest += lpszNew.GetLength(); in Replace() 892 FXSYS_memcpy(pDest, pStart, pEnd - pStart); in Replace()
|
D | fx_basic_array.cpp | 320 uint8_t* pDest = (uint8_t*)GetAt(i); in Delete() local 322 pDest[j] = pSrc[j]; in Delete()
|
/external/pdfium/fpdfsdk/src/ |
D | fpdfview.cpp | 1053 CPDF_Dictionary* pDest = pRoot->GetDict("Dests"); in FPDF_CountNamedDests() local 1054 if (pDest) in FPDF_CountNamedDests() 1055 count += pDest->GetCount(); in FPDF_CountNamedDests() 1153 CPDF_Dictionary* pDest = pRoot->GetDict("Dests"); in FPDF_GetNamedDest() local 1154 if (!pDest) in FPDF_GetNamedDest() 1158 checked_count += pDest->GetCount(); in FPDF_GetNamedDest() 1164 for (const auto& it : *pDest) { in FPDF_GetNamedDest()
|
/external/pdfium/core/src/fxcodec/codec/ |
D | fx_codec_icc.cpp | 233 unsigned char* pDest, in IccLib_TranslateImage() argument 236 cmsDoTransform(((CLcmsCmm*)pTransform)->m_hTransform, (void*)pSrc, pDest, in IccLib_TranslateImage() 564 uint8_t* pDest, in TranslateScanline() argument 567 IccLib_TranslateImage(pTransform, pDest, pSrc, pixels); in TranslateScanline()
|
/external/pdfium/core/src/fxge/dib/ |
D | fx_dib_engine.cpp | 780 FX_BOOL CFX_ImageStretcher::Start(IFX_ScanlineComposer* pDest, in Start() argument 788 m_pDest = pDest; in Start() 806 if (!pDest->SetInfo(rect.Width(), rect.Height(), m_DestFormat, pal)) { in Start() 821 if (!pDest->SetInfo(rect.Width(), rect.Height(), m_DestFormat, pal)) { in Start() 824 } else if (!pDest->SetInfo(rect.Width(), rect.Height(), m_DestFormat, NULL)) { in Start()
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
D | Execution.cpp | 1939 GenericValue *pDest = &Dest; in visitInsertValueInst() local 1941 pDest = &pDest->AggregateVal[*IdxBegin]; in visitInsertValueInst() 1953 pDest->IntVal = Src2.IntVal; in visitInsertValueInst() 1956 pDest->FloatVal = Src2.FloatVal; in visitInsertValueInst() 1959 pDest->DoubleVal = Src2.DoubleVal; in visitInsertValueInst() 1964 pDest->AggregateVal = Src2.AggregateVal; in visitInsertValueInst() 1967 pDest->PointerVal = Src2.PointerVal; in visitInsertValueInst()
|
/external/icu/icu4c/source/tools/genrb/ |
D | wrtxml.cpp | 233 static char* convertAndEscape(char** pDest, int32_t destCap, int32_t* destLength, in convertAndEscape() argument 241 if(status==NULL || U_FAILURE(*status) || pDest==NULL || srcLen==0 || src == NULL){ in convertAndEscape() 244 dest =*pDest; in convertAndEscape()
|
/external/pdfium/core/include/fxge/ |
D | fx_dib.h | 527 void Compose(CFX_DIBitmap* pDest, 608 FX_BOOL Start(IFX_ScanlineComposer* pDest,
|
/external/aac/libAACdec/src/ |
D | aacdec_hcr.cpp | 754 UCHAR *pDest; in HcrSortCodebookAndNumCodewordInSection() local 772 pDest = pSortedCodebook; in HcrSortCodebookAndNumCodewordInSection() 778 *pDest++ = pCbPriority[*pCodebook++]; in HcrSortCodebookAndNumCodewordInSection()
|
/external/pdfium/core/src/fpdfapi/fpdf_render/ |
D | fpdf_render_image.cpp | 146 CPDF_DIBTransferFunc* pDest = new CPDF_DIBTransferFunc(this); in TranslateImage() local 147 pDest->LoadSrc(pSrc, bAutoDropSrc); in TranslateImage() 148 return pDest; in TranslateImage()
|
/external/sqlite/dist/orig/ |
D | shell.c | 2679 sqlite3 *pDest; in do_meta_command() local 2706 rc = sqlite3_open(zDestFile, &pDest); in do_meta_command() 2709 sqlite3_close(pDest); in do_meta_command() 2713 pBackup = sqlite3_backup_init(pDest, "main", p->db, zDb); in do_meta_command() 2715 fprintf(stderr, "Error: %s\n", sqlite3_errmsg(pDest)); in do_meta_command() 2716 sqlite3_close(pDest); in do_meta_command() 2724 fprintf(stderr, "Error: %s\n", sqlite3_errmsg(pDest)); in do_meta_command() 2727 sqlite3_close(pDest); in do_meta_command()
|