Home
last modified time | relevance | path

Searched refs:pDest (Results 1 – 25 of 32) sorted by relevance

12

/external/icu/icu4c/source/common/
Dustrtrns.cpp50 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 …]
Dutext.cpp1413 UChar *pDest = dest; in utext_strFromUTF8() local
1421 while((index < srcLength)&&(pDest<pDestLimit)){ in utext_strFromUTF8()
1424 *pDest++=(UChar)ch; in utext_strFromUTF8()
1428 *(pDest++)=(UChar)ch; in utext_strFromUTF8()
1430 *(pDest++)=U16_LEAD(ch); in utext_strFromUTF8()
1431 if(pDest<pDestLimit){ in utext_strFromUTF8()
1432 *(pDest++)=U16_TRAIL(ch); in utext_strFromUTF8()
1451 reqLength+=(int32_t)(pDest - dest); in utext_strFromUTF8()
/external/mesa3d/src/gallium/auxiliary/util/
Du_tile.c596 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/
Dcpdf_link.cpp17 CPDF_Object* pDest = m_pDict->GetDirectObjectFor("Dest"); in GetDest() local
18 if (!pDest) in GetDest()
21 if (pDest->IsString() || pDest->IsName()) { in GetDest()
23 return CPDF_Dest(name_tree.LookupNamedDest(pDoc, pDest->GetString())); in GetDest()
25 if (CPDF_Array* pArray = pDest->AsArray()) in GetDest()
Dcpdf_bookmark.cpp59 CPDF_Object* pDest = m_pDict->GetDirectObjectFor("Dest"); in GetDest() local
60 if (!pDest) in GetDest()
62 if (pDest->IsString() || pDest->IsName()) { in GetDest()
64 return CPDF_Dest(name_tree.LookupNamedDest(pDocument, pDest->GetString())); in GetDest()
66 if (CPDF_Array* pArray = pDest->AsArray()) in GetDest()
Dcpdf_action.cpp32 CPDF_Object* pDest = m_pDict->GetDirectObjectFor("D"); in GetDest() local
33 if (!pDest) in GetDest()
35 if (pDest->IsString() || pDest->IsName()) { in GetDest()
37 return CPDF_Dest(name_tree.LookupNamedDest(pDoc, pDest->GetString())); in GetDest()
39 if (CPDF_Array* pArray = pDest->AsArray()) in GetDest()
/external/pdfium/core/fpdfapi/render/
Dcpdf_transferfunc.cpp22 CPDF_DIBTransferFunc* pDest = new CPDF_DIBTransferFunc(this); in TranslateImage() local
23 pDest->LoadSrc(pSrc, bAutoDropSrc); in TranslateImage()
24 return pDest; in TranslateImage()
/external/icu/icu4c/source/test/perf/normperf/
Dnormperf.h109 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/
Dfpdf_parser_utility.cpp97 FX_CHAR* pDest = pDestStart; in PDF_NameDecode() local
100 *pDest++ = in PDF_NameDecode()
104 *pDest++ = bstr[i]; in PDF_NameDecode()
107 result.ReleaseBuffer((FX_STRSIZE)(pDest - pDestStart)); in PDF_NameDecode()
/external/pdfium/core/fpdfapi/page/
Dcpdf_image.cpp288 uint8_t* pDest = dest_buf; in SetImage() local
291 FXSYS_memcpy(pDest, src_buf, dest_pitch); in SetImage()
292 pDest += dest_pitch; in SetImage()
302 pDest[dest_offset] = (uint8_t)(src_buf[src_offset + 2] * alpha); in SetImage()
303 pDest[dest_offset + 1] = (uint8_t)(src_buf[src_offset + 1] * alpha); in SetImage()
304 pDest[dest_offset + 2] = (uint8_t)(src_buf[src_offset] * alpha); in SetImage()
309 pDest += dest_pitch; in SetImage()
/external/lzma/CPP/Windows/
DPropVariant.cpp286 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()
DPropVariant.h102 HRESULT Detach(PROPVARIANT *pDest) throw();
/external/protobuf/php/ext/google/protobuf/
Dprotobuf.c17 zval* pDest = NULL; in add_def_obj() local
20 &value, sizeof(zval*), &pDest); in add_def_obj()
/external/icu/icu4c/source/test/cintltst/
Dcustrtrn.c988 const UChar *pu, *pDest; in Test_FromUTF8Lenient() local
997 pDest=u_strFromUTF8Lenient(dest, 1, &destLength, NULL, -1, &errorCode); in Test_FromUTF8Lenient()
1005 pDest=u_strFromUTF8Lenient(NULL, 1, &destLength, (const char *)bytes, -1, &errorCode); in Test_FromUTF8Lenient()
1013 pDest=u_strFromUTF8Lenient(dest, 1, &destLength, (const char *)bytes, -1, &errorCode); in Test_FromUTF8Lenient()
1021 pDest=u_strFromUTF8Lenient(dest, 1, &destLength, (const char *)bytes, -1, NULL); in Test_FromUTF8Lenient()
1040 pDest=u_strFromUTF8Lenient(NULL, 0, &destLength, pb, -1, &errorCode); in Test_FromUTF8Lenient()
1042 pDest!=NULL || dest[0]!=0x1234 || destLength!=destLength0 in Test_FromUTF8Lenient()
1052 pDest=u_strFromUTF8Lenient(dest, destLength0-1, &destLength, pb, -1, &errorCode); in Test_FromUTF8Lenient()
1064 pDest=u_strFromUTF8Lenient(dest, UPRV_LENGTHOF(dest), &destLength, pb, -1, &errorCode); in Test_FromUTF8Lenient()
1066 pDest!=dest || dest[destLength0]!=0 || in Test_FromUTF8Lenient()
[all …]
/external/pdfium/core/fxcodec/codec/
Dfx_codec_icc.cpp205 unsigned char* pDest, in IccLib_TranslateImage() argument
208 cmsDoTransform(((CLcmsCmm*)pTransform)->m_hTransform, (void*)pSrc, pDest, in IccLib_TranslateImage()
234 uint8_t* pDest, in TranslateScanline() argument
237 IccLib_TranslateImage(pTransform, pDest, pSrc, pixels); in TranslateScanline()
Dccodec_iccmodule.h27 uint8_t* pDest,
/external/pdfium/core/fxcrt/
Dfx_basic_wstring.cpp772 FX_WCHAR* pDest = pNewData->m_String; in Replace() local
776 wmemcpy(pDest, pStart, pTarget - pStart); in Replace()
777 pDest += pTarget - pStart; in Replace()
778 wmemcpy(pDest, pNew.c_str(), pNew.GetLength()); in Replace()
779 pDest += pNew.GetLength(); in Replace()
782 wmemcpy(pDest, pStart, pEnd - pStart); in Replace()
Dfx_basic_bstring.cpp820 FX_CHAR* pDest = pNewData->m_String; in Replace() local
824 FXSYS_memcpy(pDest, pStart, pTarget - pStart); in Replace()
825 pDest += pTarget - pStart; in Replace()
826 FXSYS_memcpy(pDest, pNew.c_str(), pNew.GetLength()); in Replace()
827 pDest += pNew.GetLength(); in Replace()
830 FXSYS_memcpy(pDest, pStart, pEnd - pStart); in Replace()
/external/pdfium/fpdfsdk/
Dfpdfview.cpp1128 CPDF_Dictionary* pDest = pRoot->GetDictFor("Dests"); in FPDF_CountNamedDests() local
1129 if (pDest) in FPDF_CountNamedDests()
1130 count += pDest->GetCount(); in FPDF_CountNamedDests()
1227 CPDF_Dictionary* pDest = pRoot->GetDictFor("Dests"); in FPDF_GetNamedDest() local
1228 if (!pDest) in FPDF_GetNamedDest()
1232 checked_count += pDest->GetCount(); in FPDF_GetNamedDest()
1238 for (const auto& it : *pDest) { in FPDF_GetNamedDest()
/external/pdfium/xfa/fde/css/
Dcfde_cssstyleselector.cpp86 CFDE_CSSComputedStyle* pDest) { in ComputeStyle() argument
98 ApplyDeclarations(declArray, pDecl.get(), pDest); in ComputeStyle()
/external/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp1939 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/
Dwrtxml.cpp235 static char* convertAndEscape(char** pDest, int32_t destCap, int32_t* destLength, in convertAndEscape() argument
243 if(status==NULL || U_FAILURE(*status) || pDest==NULL || srcLen==0 || src == NULL){ in convertAndEscape()
246 dest =*pDest; in convertAndEscape()
/external/pdfium/core/fxge/
Dfx_dib.h523 void Compose(CFX_DIBitmap* pDest,
598 CFX_ImageStretcher(IFX_ScanlineComposer* pDest,
/external/aac/libAACdec/src/
Daacdec_hcr.cpp754 UCHAR *pDest; in HcrSortCodebookAndNumCodewordInSection() local
772 pDest = pSortedCodebook; in HcrSortCodebookAndNumCodewordInSection()
778 *pDest++ = pCbPriority[*pCodebook++]; in HcrSortCodebookAndNumCodewordInSection()
/external/pdfium/core/fxge/dib/
Dfx_dib_engine.cpp858 CFX_ImageStretcher::CFX_ImageStretcher(IFX_ScanlineComposer* pDest, in CFX_ImageStretcher() argument
864 : m_pDest(pDest), in CFX_ImageStretcher()

12