Searched refs:pDest (Results 1 - 25 of 48) sorted by relevance

12

/external/chromium_org/third_party/icu/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...]
/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...]
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_bookmark.cpp72 CPDF_Object* pDest = m_pDict->GetElementValue("Dest"); local
73 if (pDest == NULL) {
76 if (pDest->GetType() == PDFOBJ_STRING || pDest->GetType() == PDFOBJ_NAME) {
78 CFX_ByteStringC name = pDest->GetString();
80 } else if (pDest->GetType() == PDFOBJ_ARRAY) {
81 return (CPDF_Array*)pDest;
H A Ddoc_link.cpp89 CPDF_Object* pDest = m_pDict->GetElementValue("Dest"); local
90 if (pDest == NULL) {
93 if (pDest->GetType() == PDFOBJ_STRING || pDest->GetType() == PDFOBJ_NAME) {
95 CFX_ByteStringC name = pDest->GetString();
97 } else if (pDest->GetType() == PDFOBJ_ARRAY) {
98 return (CPDF_Array*)pDest;
H A Ddoc_action.cpp17 CPDF_Object* pDest = m_pDict->GetElementValue("D"); local
18 if (pDest == NULL) {
21 if (pDest->GetType() == PDFOBJ_STRING || pDest->GetType() == PDFOBJ_NAME) {
23 CFX_ByteStringC name = pDest->GetString();
25 } else if (pDest->GetType() == PDFOBJ_ARRAY) {
26 return (CPDF_Array*)pDest;
/external/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/sqlite/src/src/
H A Dbackup.c29 Btree *pDest; /* Destination b-tree file */ member in struct:sqlite3_backup
31 int bDestLocked; /* True once a write-transaction is open on pDest */
126 rc = sqlite3BtreeSetPageSize(p->pDest,sqlite3BtreeGetPageSize(p->pSrc),-1,0);
177 p->pDest = findBtree(pDestDb, pDestDb, zDestDb);
183 if( 0==p->pSrc || 0==p->pDest || setDestPgsz(p)==SQLITE_NOMEM ){
217 Pager * const pDestPager = sqlite3BtreePager(p->pDest);
219 int nDestPgsz = sqlite3BtreeGetPageSize(p->pDest);
224 int nDestReserve = sqlite3BtreeGetReserve(p->pDest);
269 if( iDest==PENDING_BYTE_PAGE(p->pDest->pBt) ) continue;
341 Pager * const pDestPager = sqlite3BtreePager(p->pDest); /* Des
[all...]
H A Dinsert.c325 Table *pDest, /* The table we are inserting into */
328 int iDbDest /* The database of pDest */
1541 ** for index pDest in an insert transfer optimization. The rules
1549 static int xferCompatibleIndex(Index *pDest, Index *pSrc){ argument
1551 assert( pDest && pSrc );
1552 assert( pDest->pTable!=pSrc->pTable );
1553 if( pDest->nColumn!=pSrc->nColumn ){
1556 if( pDest->onError!=pSrc->onError ){
1560 if( pSrc->aiColumn[i]!=pDest->aiColumn[i] ){
1563 if( pSrc->aSortOrder[i]!=pDest
1606 xferOptimization( Parse *pParse, Table *pDest, Select *pSelect, int onError, int iDbDest ) argument
[all...]
H A Dselect.c37 void sqlite3SelectDestInit(SelectDest *pDest, int eDest, int iParm){ argument
38 pDest->eDest = (u8)eDest;
39 pDest->iParm = iParm;
40 pDest->affinity = 0;
41 pDest->iMem = 0;
42 pDest->nMem = 0;
503 SelectDest *pDest, /* Destination of SELECT results */
506 int eDest = pDest->eDest;
534 SelectDest *pDest, /* How to dispose of the results */
542 int eDest = pDest
501 checkForMultiColumnSelectError( Parse *pParse, SelectDest *pDest, int nExpr ) argument
526 selectInnerLoop( Parse *pParse, Select *p, ExprList *pEList, int srcTab, int nColumn, ExprList *pOrderBy, int distinct, SelectDest *pDest, int iContinue, int iBreak ) argument
1900 generateOutputSubroutine( Parse *pParse, Select *p, SelectDest *pIn, SelectDest *pDest, int regReturn, int regPrev, KeyInfo *pKeyInfo, int p4type, int iBreak ) argument
[all...]
H A Dvdbe.c2095 Mem *pDest; /* Where to write the extracted value */ local
2112 pDest = &aMem[pOp->p3];
2113 memAboutToChange(p, pDest);
2114 MemSetTypeFlag(pDest, MEM_Null);
2173 assert( pDest->flags&MEM_Null );
2322 sqlite3VdbeMemReleaseExternal(pDest);
2323 sqlite3VdbeSerialGet((u8 *)&zRec[aOffset[p2]], aType[p2], pDest);
2326 sqlite3VdbeMemMove(&sMem, pDest);
2332 sqlite3VdbeSerialGet((u8*)zData, aType[p2], pDest);
2334 pDest
5626 Mem *pDest; local
[all...]
/external/bluetooth/bluedroid/embdrv/sbc/decoder/include/
H A Doi_string.h111 * Copies the Null terminated string from pStr to pDest, and
112 * returns pDest.
115 OI_CHAR* OI_Strcpy(OI_CHAR *pDest,
121 * Concatonates the pStr string to the end of pDest, and
122 * returns pDest.
125 OI_CHAR* OI_Strcat(OI_CHAR *pDest,
/external/pdfium/core/src/fpdfapi/fpdf_edit/
H A Dfpdf_edit_image.cpp312 FX_LPBYTE pDest = dest_buf; local
315 FXSYS_memcpy32(pDest, src_buf, dest_pitch);
316 pDest += dest_pitch;
329 FX_LPBYTE pDest = dest_buf; local
336 pDest[dest_offset] = (FX_BYTE)(src_buf[src_offset + 2] * alpha);
337 pDest[dest_offset + 1] = (FX_BYTE)(src_buf[src_offset + 1] * alpha);
338 pDest[dest_offset + 2] = (FX_BYTE)(src_buf[src_offset] * alpha);
343 pFileWrite->WriteBlock(pDest, dest_pitch);
344 pDest = dest_buf;
346 pDest
[all...]
/external/chromium_org/third_party/icu/source/test/perf/normperf/
H A Dnormperf.h105 UChar* pDest; member in class:NormPerfFunction
120 retVal = (*fn)(lines[i].name,lines[i].len,pDest,destLen, options, status);
124 retVal = (*fn)(lines[i].name,-1,pDest,destLen, options, status);
129 retVal = (*fn)(src,srcLen,pDest,destLen, options, status);
131 retVal = (*fn)(src,-1,pDest,destLen, options, status);
152 pDest = dest;
163 pDest = (UChar*) malloc(destLen * U_SIZEOF_UCHAR);
169 if(dest != pDest){
170 free(pDest);
/external/icu/icu4c/source/test/perf/normperf/
H A Dnormperf.h105 UChar* pDest; member in class:NormPerfFunction
120 retVal = (*fn)(lines[i].name,lines[i].len,pDest,destLen, options, status);
124 retVal = (*fn)(lines[i].name,-1,pDest,destLen, options, status);
129 retVal = (*fn)(src,srcLen,pDest,destLen, options, status);
131 retVal = (*fn)(src,-1,pDest,destLen, options, status);
152 pDest = dest;
163 pDest = (UChar*) malloc(destLen * U_SIZEOF_UCHAR);
169 if(dest != pDest){
170 free(pDest);
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DVectorMath.cpp217 __m128* pDest;
233 pDest = reinterpret_cast<__m128*>(destP);
234 *pDest = _mm_mul_ps(*pSource, mScale);
296 __m128* pDest;
307 pDest = reinterpret_cast<__m128*>(destP);
308 *pDest = _mm_add_ps(*pSource1, *pSource2);
331 pDest = reinterpret_cast<__m128*>(destP);
332 *pDest = _mm_add_ps(*pSource1, source2);
/external/lzma/CPP/Windows/
H A DPropVariant.h46 HRESULT Detach(PROPVARIANT *pDest);
H A DPropVariant.cpp185 HRESULT CPropVariant::Detach(PROPVARIANT *pDest) argument
187 HRESULT hr = MyPropVariantClear(pDest);
190 memcpy(pDest, this, sizeof(PROPVARIANT));
/external/libnfc-nxp/src/
H A DphFriNfc_Llcp.c98 phNfc_sData_t * pDest = NULL; local
105 pDest = phOsalNfc_GetMemory(sizeof(phNfc_sData_t));
106 if (pDest == NULL)
111 pDest->buffer = phOsalNfc_GetMemory(pOrig->length);
112 if (pDest->buffer == NULL)
117 memcpy(pDest->buffer, pOrig->buffer, pOrig->length);
118 pDest->length = pOrig->length;
120 return pDest;
123 if (pDest != NULL)
125 if (pDest
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_parser/
H A Dfpdf_parser_utility.cpp273 FX_LPSTR pDest = pDestStart; local
276 *pDest ++ = _hex2dec(pSrc[i + 1]) * 16 + _hex2dec(pSrc[i + 2]);
279 *pDest ++ = pSrc[i];
282 result.ReleaseBuffer((FX_STRSIZE)(pDest - pDestStart));
/external/chromium_org/third_party/icu/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, LENGTHOF(dest), &destLength, pb, -1, &errorCode);
1066 pDest!
[all...]
/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, LENGTHOF(dest), &destLength, pb, -1, &errorCode);
1066 pDest!
[all...]
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_icc.cpp195 void IccLib_TranslateImage(void* pTransform, unsigned char* pDest, const unsigned char* pSrc, int pixels) argument
197 cmsDoTransform(((CLcmsCmm*)pTransform)->m_hTransform, (void*)pSrc, pDest, pixels);
539 void CCodec_IccModule::TranslateScanline(void* pTransform, FX_LPBYTE pDest, FX_LPCBYTE pSrc, int pixels) argument
541 IccLib_TranslateImage(pTransform, pDest, pSrc, pixels);
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_bstring.cpp909 FX_LPSTR pDest = pNewData->m_String; local
912 FXSYS_memcpy32(pDest, pStart, pTarget - pStart);
913 pDest += pTarget - pStart;
914 FXSYS_memcpy32(pDest, lpszNew.GetCStr(), lpszNew.GetLength());
915 pDest += lpszNew.GetLength();
918 FXSYS_memcpy32(pDest, pStart, pEnd - pStart);
H A Dfx_basic_array.cpp345 FX_BYTE* pDest = (FX_BYTE*)GetAt(i); local
347 pDest[j] = pSrc[j];

Completed in 629 milliseconds

12