Searched defs:pDest (Results 1 - 24 of 24) sorted by relevance

/external/pdfium/core/fpdfdoc/
H A Dcpdf_link.cpp17 CPDF_Object* pDest = m_pDict->GetDirectObjectFor("Dest"); local
18 if (!pDest)
21 if (pDest->IsString() || pDest->IsName()) {
23 return CPDF_Dest(name_tree.LookupNamedDest(pDoc, pDest->GetString()));
25 if (CPDF_Array* pArray = pDest->AsArray())
/external/pdfium/core/fpdfapi/render/
H A Dcpdf_transferfunc.cpp22 CPDF_DIBTransferFunc* pDest = new CPDF_DIBTransferFunc(this); local
23 pDest->LoadSrc(pSrc, bAutoDropSrc);
24 return pDest;
/external/protobuf/php/ext/google/protobuf/
H A Dprotobuf.c17 zval* pDest = NULL; local
20 &value, sizeof(zval*), &pDest); local
/external/icu/icu4c/source/common/
H A Dustrtrns.cpp50 UChar *pDest; local
70 pDest = dest;
80 if(pDest < destLimit) {
81 *pDest++ = (UChar)ch;
101 if(pDest < destLimit) {
102 *pDest++ = (UChar)ch;
108 if(pDest!=NULL && ((pDest + 2) <= destLimit)) {
109 *pDest++ = U16_LEAD(ch);
110 *pDest
165 UChar32 *pDest; local
[all...]
H A Dutext.cpp1413 UChar *pDest = dest; local
1421 while((index < srcLength)&&(pDest<pDestLimit)){
1424 *pDest++=(UChar)ch;
1428 *(pDest++)=(UChar)ch;
1430 *(pDest++)=U16_LEAD(ch);
1431 if(pDest<pDestLimit){
1432 *(pDest++)=U16_TRAIL(ch);
1451 reqLength+=(int32_t)(pDest - dest);
/external/lzma/CPP/Windows/
H A DPropVariant.cpp239 HRESULT CPropVariant::Detach(PROPVARIANT *pDest) throw() argument
241 if (pDest->vt != VT_EMPTY)
243 HRESULT hr = PropVariant_Clear(pDest);
247 memcpy(pDest, this, sizeof(PROPVARIANT));
/external/pdfium/core/fpdfapi/parser/
H A Dfpdf_parser_utility.cpp97 FX_CHAR* pDest = pDestStart; local
100 *pDest++ =
104 *pDest++ = bstr[i];
107 result.ReleaseBuffer((FX_STRSIZE)(pDest - pDestStart));
/external/icu/icu4c/source/test/perf/normperf/
H A Dnormperf.h109 UChar* pDest; member in class:NormPerfFunction
124 retVal = (*fn)(lines[i].name,lines[i].len,pDest,destLen, options, status);
128 retVal = (*fn)(lines[i].name,-1,pDest,destLen, options, status);
133 retVal = (*fn)(src,srcLen,pDest,destLen, options, status);
135 retVal = (*fn)(src,-1,pDest,destLen, options, status);
156 pDest = dest;
167 pDest = (UChar*) malloc(destLen * U_SIZEOF_UCHAR);
173 if(dest != pDest){
174 free(pDest);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_tile.c613 uint *pDest = z; local
632 memcpy(pDest, ptrc, 4 * w);
633 pDest += dstStride;
646 pDest[j] = (ptrc[j] << 8) | ((ptrc[j] >> 16) & 0xff);
648 pDest += dstStride;
661 pDest[j] = (ptrc[j] & 0xffffff00) | ((ptrc[j] >> 24) & 0xff);
663 pDest += dstStride;
675 pDest[j] = (ptrc[j] << 16) | ptrc[j];
677 pDest += dstStride;
689 pDest[
758 uint *pDest = (uint *) (map + y * pt->stride + x*4); local
768 uint *pDest = (uint *) (map + y * pt->stride + x*4); local
782 uint *pDest = (uint *) (map + y * pt->stride + x*4); local
795 uint *pDest = (uint *) (map + y * pt->stride + x*4); local
809 uint *pDest = (uint *) (map + y * pt->stride + x*4); local
822 ushort *pDest = (ushort *) (map + y * pt->stride + x*2); local
835 float *pDest = (float *) (map + y * pt->stride + x*4); local
849 float *pDest = (float *) (map + y * pt->stride + x*8); local
[all...]
/external/pdfium/xfa/fde/css/
H A Dcfde_cssstyleselector.cpp86 CFDE_CSSComputedStyle* pDest) {
98 ApplyDeclarations(declArray, pDecl.get(), pDest);
82 ComputeStyle( const std::vector<const CFDE_CSSDeclaration*>& declArray, const CFX_WideString& styleString, const CFX_WideString& alignString, CFDE_CSSComputedStyle* pDest) argument
/external/pdfium/core/fpdfapi/page/
H A Dcpdf_image.cpp288 uint8_t* pDest = dest_buf; local
291 FXSYS_memcpy(pDest, src_buf, dest_pitch);
292 pDest += dest_pitch;
302 pDest[dest_offset] = (uint8_t)(src_buf[src_offset + 2] * alpha);
303 pDest[dest_offset + 1] = (uint8_t)(src_buf[src_offset + 1] * alpha);
304 pDest[dest_offset + 2] = (uint8_t)(src_buf[src_offset] * alpha);
309 pDest += dest_pitch;
/external/icu/icu4c/source/test/cintltst/
H A Dcustrtrn.c988 const UChar *pu, *pDest; local
997 pDest=u_strFromUTF8Lenient(dest, 1, &destLength, NULL, -1, &errorCode);
1005 pDest=u_strFromUTF8Lenient(NULL, 1, &destLength, (const char *)bytes, -1, &errorCode);
1013 pDest=u_strFromUTF8Lenient(dest, 1, &destLength, (const char *)bytes, -1, &errorCode);
1021 pDest=u_strFromUTF8Lenient(dest, 1, &destLength, (const char *)bytes, -1, NULL);
1040 pDest=u_strFromUTF8Lenient(NULL, 0, &destLength, pb, -1, &errorCode);
1042 pDest!=NULL || dest[0]!=0x1234 || destLength!=destLength0
1052 pDest=u_strFromUTF8Lenient(dest, destLength0-1, &destLength, pb, -1, &errorCode);
1064 pDest=u_strFromUTF8Lenient(dest, UPRV_LENGTHOF(dest), &destLength, pb, -1, &errorCode);
1066 pDest!
[all...]
/external/pdfium/core/fxcodec/codec/
H A Dfx_codec_icc.cpp205 unsigned char* pDest,
208 cmsDoTransform(((CLcmsCmm*)pTransform)->m_hTransform, (void*)pSrc, pDest,
234 uint8_t* pDest,
237 IccLib_TranslateImage(pTransform, pDest, pSrc, pixels);
204 IccLib_TranslateImage(void* pTransform, unsigned char* pDest, const unsigned char* pSrc, int32_t pixels) argument
233 TranslateScanline(void* pTransform, uint8_t* pDest, const uint8_t* pSrc, int32_t pixels) argument
/external/icu/icu4c/source/tools/genrb/
H A Dwrtxml.cpp235 static char* convertAndEscape(char** pDest, int32_t destCap, int32_t* destLength, argument
243 if(status==NULL || U_FAILURE(*status) || pDest==NULL || srcLen==0 || src == NULL){
246 dest =*pDest;
/external/pdfium/core/fxcrt/
H A Dfx_basic_bstring.cpp820 FX_CHAR* pDest = pNewData->m_String; local
824 FXSYS_memcpy(pDest, pStart, pTarget - pStart);
825 pDest += pTarget - pStart;
826 FXSYS_memcpy(pDest, pNew.c_str(), pNew.GetLength());
827 pDest += pNew.GetLength();
830 FXSYS_memcpy(pDest, pStart, pEnd - pStart);
H A Dfx_basic_wstring.cpp772 FX_WCHAR* pDest = pNewData->m_String; local
776 wmemcpy(pDest, pStart, pTarget - pStart);
777 pDest += pTarget - pStart;
778 wmemcpy(pDest, pNew.c_str(), pNew.GetLength());
779 pDest += pNew.GetLength();
782 wmemcpy(pDest, pStart, pEnd - pStart);
/external/pdfium/core/fxge/dib/
H A Dfx_dib_engine.cpp858 CFX_ImageStretcher::CFX_ImageStretcher(IFX_ScanlineComposer* pDest, argument
864 : m_pDest(pDest),
H A Dfx_dib_composite.cpp4853 void CFX_BitmapComposer::Compose(CFX_DIBitmap* pDest, argument
4865 m_pBitmap = pDest;
/external/aac/libAACdec/src/
H A Daacdec_hcr.cpp754 UCHAR *pDest; local
772 pDest = pSortedCodebook;
778 *pDest++ = pCbPriority[*pCodebook++];
/external/pdfium/fpdfsdk/
H A Dfpdfview.cpp1128 CPDF_Dictionary* pDest = pRoot->GetDictFor("Dests"); local
1129 if (pDest)
1130 count += pDest->GetCount();
1227 CPDF_Dictionary* pDest = pRoot->GetDictFor("Dests"); local
1228 if (!pDest)
1232 checked_count += pDest->GetCount();
1238 for (const auto& it : *pDest) {
/external/sqlite/dist/orig/
H A Dshell.c4535 sqlite3 *pDest; local
4562 rc = sqlite3_open(zDestFile, &pDest);
4565 sqlite3_close(pDest);
4569 pBackup = sqlite3_backup_init(pDest, "main", p->db, zDb);
4571 utf8_printf(stderr, "Error: %s\n", sqlite3_errmsg(pDest));
4572 sqlite3_close(pDest);
4580 utf8_printf(stderr, "Error: %s\n", sqlite3_errmsg(pDest));
4583 sqlite3_close(pDest);
H A Dsqlite3.c7838 sqlite3 *pDest, /* Destination database handle */
15518 ** identified by pDest->iSDParm.
15520 ** SRT_Except Remove results from the temporary index pDest->iSDParm.
15522 ** SRT_Exists Store a 1 in memory cell pDest->iSDParm if the result
15537 ** in register pDest->iSDParm then abandon the rest
15541 ** row of result as the key in table pDest->iSDParm.
15542 ** Apply the affinity pDest->affSdst before storing
15545 ** SRT_EphemTab Create an temporary table pDest->iSDParm and store
15553 ** of the co-routine is stored in register pDest->iSDParm
15554 ** and the result row is stored in pDest
49075 sqlite3PagerAlignReserve(Pager *pDest, Pager *pSrc) argument
50691 sqlite3PagerReadFileheader(Pager *pPager, int N, unsigned char *pDest) argument
68841 Btree *pDest; /* Destination b-tree file */ member in struct:sqlite3_backup
80651 Mem *pDest; /* Where to write the extracted value */ local
84890 Mem *pDest; local
110456 xferCompatibleIndex(Index *pDest, Index *pSrc) argument
110517 xferOptimization( Parse *pParse, Table *pDest, Select *pSelect, int onError, int iDbDest ) argument
116338 sqlite3SelectDestInit(SelectDest *pDest, int eDest, int iParm) argument
116923 selectInnerLoop( Parse *pParse, Select *p, ExprList *pEList, int srcTab, SortCtx *pSort, DistinctCtx *pDistinct, SelectDest *pDest, int iContinue, int iBreak ) argument
118866 generateOutputSubroutine( Parse *pParse, Select *p, SelectDest *pIn, SelectDest *pDest, int regReturn, int regPrev, KeyInfo *pKeyInfo, int iBreak ) argument
129952 whereOrMove(WhereOrSet *pDest, WhereOrSet *pSrc) argument
[all...]
/external/sqlite/dist/
H A Dshell.c4557 sqlite3 *pDest; local
4584 rc = sqlite3_open(zDestFile, &pDest);
4587 sqlite3_close(pDest);
4591 pBackup = sqlite3_backup_init(pDest, "main", p->db, zDb);
4593 utf8_printf(stderr, "Error: %s\n", sqlite3_errmsg(pDest));
4594 sqlite3_close(pDest);
4602 utf8_printf(stderr, "Error: %s\n", sqlite3_errmsg(pDest));
4605 sqlite3_close(pDest);
H A Dsqlite3.c7838 sqlite3 *pDest, /* Destination database handle */
15518 ** identified by pDest->iSDParm.
15520 ** SRT_Except Remove results from the temporary index pDest->iSDParm.
15522 ** SRT_Exists Store a 1 in memory cell pDest->iSDParm if the result
15537 ** in register pDest->iSDParm then abandon the rest
15541 ** row of result as the key in table pDest->iSDParm.
15542 ** Apply the affinity pDest->affSdst before storing
15545 ** SRT_EphemTab Create an temporary table pDest->iSDParm and store
15553 ** of the co-routine is stored in register pDest->iSDParm
15554 ** and the result row is stored in pDest
49075 sqlite3PagerAlignReserve(Pager *pDest, Pager *pSrc) argument
50691 sqlite3PagerReadFileheader(Pager *pPager, int N, unsigned char *pDest) argument
68841 Btree *pDest; /* Destination b-tree file */ member in struct:sqlite3_backup
80651 Mem *pDest; /* Where to write the extracted value */ local
84890 Mem *pDest; local
110456 xferCompatibleIndex(Index *pDest, Index *pSrc) argument
110517 xferOptimization( Parse *pParse, Table *pDest, Select *pSelect, int onError, int iDbDest ) argument
116338 sqlite3SelectDestInit(SelectDest *pDest, int eDest, int iParm) argument
116923 selectInnerLoop( Parse *pParse, Select *p, ExprList *pEList, int srcTab, SortCtx *pSort, DistinctCtx *pDistinct, SelectDest *pDest, int iContinue, int iBreak ) argument
118866 generateOutputSubroutine( Parse *pParse, Select *p, SelectDest *pIn, SelectDest *pDest, int regReturn, int regPrev, KeyInfo *pKeyInfo, int iBreak ) argument
129952 whereOrMove(WhereOrSet *pDest, WhereOrSet *pSrc) argument
[all...]

Completed in 1526 milliseconds