Home
last modified time | relevance | path

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

/third_party/icu/icu4c/source/common/
H A 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 in u_strFromUTF32WithSub()
165 UChar32 *pDest; u_strToUTF32WithSub() local
282 UChar *pDest = dest; u_strFromUTF8WithSub() local
560 UChar *pDest = dest; u_strFromUTF8Lenient() local
771 _appendUTF8(uint8_t *pDest, UChar32 c) _appendUTF8() argument
802 uint8_t *pDest = (uint8_t *)dest; u_strToUTF8WithSub() local
1094 UChar *pDest = dest; u_strFromJavaModifiedUTF8WithSub() local
1322 uint8_t *pDest = (uint8_t *)dest; u_strToJavaModifiedUTF8() local
[all...]
H A Dutext.cpp1427 UChar *pDest = dest;
1435 while((index < srcLength)&&(pDest<pDestLimit)){
1438 *pDest++=(UChar)ch;
1442 *(pDest++)=(UChar)ch;
1444 *(pDest++)=U16_LEAD(ch);
1445 if(pDest<pDestLimit){
1446 *(pDest++)=U16_TRAIL(ch);
1465 reqLength+=(int32_t)(pDest - dest);
/third_party/node/deps/icu-small/source/common/
H A Dustrtrns.cpp50 char16_t *pDest; in u_strFromUTF32WithSub() local
70 pDest = dest; in u_strFromUTF32WithSub()
80 if(pDest < destLimit) { in u_strFromUTF32WithSub()
81 *pDest++ = (char16_t)ch; in u_strFromUTF32WithSub()
101 if(pDest < destLimit) { in u_strFromUTF32WithSub()
102 *pDest++ = (char16_t)ch; in u_strFromUTF32WithSub()
108 if(pDest!=nullptr && ((pDest + 2) <= destLimit)) { in u_strFromUTF32WithSub()
109 *pDest++ = U16_LEAD(ch); in u_strFromUTF32WithSub()
110 *pDest in u_strFromUTF32WithSub()
165 UChar32 *pDest; u_strToUTF32WithSub() local
282 char16_t *pDest = dest; u_strFromUTF8WithSub() local
560 char16_t *pDest = dest; u_strFromUTF8Lenient() local
771 _appendUTF8(uint8_t *pDest, UChar32 c) _appendUTF8() argument
802 uint8_t *pDest = (uint8_t *)dest; u_strToUTF8WithSub() local
1094 char16_t *pDest = dest; u_strFromJavaModifiedUTF8WithSub() local
1335 uint8_t *pDest = (uint8_t *)dest; u_strToJavaModifiedUTF8() local
[all...]
H A Dutext.cpp1430 char16_t *pDest = dest;
1438 while((index < srcLength)&&(pDest<pDestLimit)){
1441 *pDest++=(char16_t)ch;
1445 *(pDest++)=(char16_t)ch;
1447 *(pDest++)=U16_LEAD(ch);
1448 if(pDest<pDestLimit){
1449 *(pDest++)=U16_TRAIL(ch);
1468 reqLength+=(int32_t)(pDest - dest);
/third_party/skia/third_party/externals/icu/source/common/
H A 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 in u_strFromUTF32WithSub()
165 UChar32 *pDest; u_strToUTF32WithSub() local
282 UChar *pDest = dest; u_strFromUTF8WithSub() local
560 UChar *pDest = dest; u_strFromUTF8Lenient() local
771 _appendUTF8(uint8_t *pDest, UChar32 c) _appendUTF8() argument
802 uint8_t *pDest = (uint8_t *)dest; u_strToUTF8WithSub() local
1094 UChar *pDest = dest; u_strFromJavaModifiedUTF8WithSub() local
1322 uint8_t *pDest = (uint8_t *)dest; u_strToJavaModifiedUTF8() local
[all...]
H A Dutext.cpp1427 UChar *pDest = dest;
1435 while((index < srcLength)&&(pDest<pDestLimit)){
1438 *pDest++=(UChar)ch;
1442 *(pDest++)=(UChar)ch;
1444 *(pDest++)=U16_LEAD(ch);
1445 if(pDest<pDestLimit){
1446 *(pDest++)=U16_TRAIL(ch);
1465 reqLength+=(int32_t)(pDest - dest);
/third_party/bounds_checking_function/src/
H A Dmemmove_s.c28 unsigned char *pDest = (unsigned char *)dst; in SecUtilMemmove() local
32 if (dst <= src || pDest >= (pSrc + maxCount)) { in SecUtilMemmove()
39 *pDest = *pSrc; in SecUtilMemmove()
40 ++pDest; in SecUtilMemmove()
48 pDest = pDest + maxCount - 1; in SecUtilMemmove()
52 *pDest = *pSrc; in SecUtilMemmove()
53 --pDest; in SecUtilMemmove()
/third_party/icu/icu4c/source/test/perf/normperf/
H A Dnormperf.h109 UChar* pDest; member in NormPerfFunction
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()
/third_party/lzma/CPP/Windows/
H A DPropVariant.cpp316 HRESULT CPropVariant::Detach(PROPVARIANT *pDest) throw() in Detach() argument
318 if (pDest->vt != VT_EMPTY) in Detach()
320 const HRESULT hr = PropVariant_Clear(pDest); in Detach()
324 // memcpy(pDest, this, sizeof(PROPVARIANT)); in Detach()
325 *pDest = *(PROPVARIANT *)this; in Detach()
H A DPropVariant.h164 HRESULT Detach(PROPVARIANT *pDest) throw();
/third_party/icu/icu4c/source/test/cintltst/
H A Dcustrtrn.c990 const UChar *pu, *pDest; in Test_FromUTF8Lenient() local
999 pDest=u_strFromUTF8Lenient(dest, 1, &destLength, NULL, -1, &errorCode); in Test_FromUTF8Lenient()
1007 pDest=u_strFromUTF8Lenient(NULL, 1, &destLength, (const char *)bytes, -1, &errorCode); in Test_FromUTF8Lenient()
1015 pDest=u_strFromUTF8Lenient(dest, 1, &destLength, (const char *)bytes, -1, &errorCode); in Test_FromUTF8Lenient()
1034 pDest=u_strFromUTF8Lenient(NULL, 0, &destLength, pb, -1, &errorCode); in Test_FromUTF8Lenient()
1036 pDest!=NULL || dest[0]!=0x1234 || destLength!=destLength0 in Test_FromUTF8Lenient()
1046 pDest=u_strFromUTF8Lenient(dest, destLength0-1, &destLength, pb, -1, &errorCode); in Test_FromUTF8Lenient()
1058 pDest=u_strFromUTF8Lenient(dest, UPRV_LENGTHOF(dest), &destLength, pb, -1, &errorCode); in Test_FromUTF8Lenient()
1060 pDest!=dest || dest[destLength0]!=0 || in Test_FromUTF8Lenient()
1070 pDest in Test_FromUTF8Lenient()
[all...]
/third_party/backends/backend/
H A Dplustek-pp_tpa.c338 pUChar pDest, pSrce, pNegativeTempRam; in tpaP98RecalculateNegativeShadingGain() local
412 pDest = pSrce = pNegativeTempRam; in tpaP98RecalculateNegativeShadingGain()
415 for (dw1 = 0; dw1 < (960 * 3) / 16; dw1++, pDest++) { in tpaP98RecalculateNegativeShadingGain()
419 *pDest = wSum / 16; in tpaP98RecalculateNegativeShadingGain()
492 pDest = pSrce = pNegativeTempRam; in tpaP98RecalculateNegativeShadingGain()
493 for( dw1 = 0; dw1 < (960 * 3) / 16; dw1++, pDest++ ) { in tpaP98RecalculateNegativeShadingGain()
496 *pDest = wSum / 16; in tpaP98RecalculateNegativeShadingGain()
H A Dplustek-pp_dac.c85 pUChar pDest, pSrce; in dacP98AdjustGainAverage() local
89 pDest = pSrce = ps->pScanBuffer1; in dacP98AdjustGainAverage()
91 for (dw1 = 0; dw1 < (2560 * 3) / 16; dw1++, pDest++) { in dacP98AdjustGainAverage()
95 *pDest = wSum / 16; in dacP98AdjustGainAverage()
949 static void dacP96SumAverageShading( pScanData ps, pUChar pDest, pUChar pSrce ) in dacP96SumAverageShading() argument
956 pDest += ps->Offset70 + ps->Device.DataOriginX; in dacP96SumAverageShading()
965 /* for (dw = 2772; dw; dw--, pSrce++, pDest++) */ in dacP96SumAverageShading()
966 for (dw = ps->BufferSizePerModel - 6; dw; dw--, pSrce++, pDest++) { in dacP96SumAverageShading()
968 *pDest = (Byte)(((UShort)*pSrce * 4 + wSumL + wSumR) / 16); in dacP96SumAverageShading()
H A Dxerox_mfp.c159 /* copy from decoded jpeg image (dev->decData) into user's buffer (pDest) */
161 static int copy_decompress_data(struct device *dev, unsigned char *pDest, int maxlen, int *destLen) in copy_decompress_data() argument
172 if (data_size && pDest) { in copy_decompress_data()
173 memcpy(pDest, dev->decData + dev->currentDecDataIndex, data_size); in copy_decompress_data()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp1986 GenericValue *pDest = &Dest;
1988 pDest = &pDest->AggregateVal[*IdxBegin];
1991 // pDest points to the target value in the Dest now
2000 pDest->IntVal = Src2.IntVal;
2003 pDest->FloatVal = Src2.FloatVal;
2006 pDest->DoubleVal = Src2.DoubleVal;
2011 pDest->AggregateVal = Src2.AggregateVal;
2014 pDest->PointerVal = Src2.PointerVal;
/third_party/node/deps/icu-small/source/tools/genrb/
H A Dwrtxml.cpp235 static char* convertAndEscape(char** pDest, int32_t destCap, int32_t* destLength, in convertAndEscape() argument
243 if(status==nullptr || U_FAILURE(*status) || pDest==nullptr || srcLen==0 || src == nullptr){ in convertAndEscape()
246 dest =*pDest; in convertAndEscape()
/third_party/icu/icu4c/source/tools/genrb/
H A 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()
/third_party/skia/third_party/externals/icu/source/tools/genrb/
H A 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()
/third_party/skia/third_party/externals/d3d12allocator/src/
H A DD3D12Sample.cpp232 _In_ const D3D12_MEMCPY_DEST* pDest, in MemcpySubresource()
240 BYTE* pDestSlice = reinterpret_cast<BYTE*>(pDest->pData) + pDest->SlicePitch * z; in MemcpySubresource()
244 memcpy(pDestSlice + pDest->RowPitch * y, in MemcpySubresource()
231 MemcpySubresource( _In_ const D3D12_MEMCPY_DEST* pDest, _In_ const D3D12_SUBRESOURCE_DATA* pSrc, SIZE_T RowSizeInBytes, UINT NumRows, UINT NumSlices) MemcpySubresource() argument
/third_party/sqlite/src/
H A Dsqlite3.c9411 sqlite3 *pDest, /* Destination database handle */
18894 ** identified by pDest->iSDParm.
18896 ** SRT_Except Remove results from the temporary index pDest->iSDParm.
18898 ** SRT_Exists Store a 1 in memory cell pDest->iSDParm if the result
18910 ** in register pDest->iSDParm then abandon the rest
18914 ** row of result as the key in table pDest->iSDParm.
18915 ** Apply the affinity pDest->affSdst before storing
18918 ** SRT_EphemTab Create an temporary table pDest->iSDParm and store
18926 ** of the co-routine is stored in register pDest->iSDParm
18927 ** and the result row is stored in pDest
57731 sqlite3PagerAlignReserve(Pager *pDest, Pager *pSrc) global() argument
59396 sqlite3PagerReadFileheader(Pager *pPager, int N, unsigned char *pDest) global() argument
77506 btreeOverwriteContent( MemPage *pPage, u8 *pDest, const BtreePayload *pX, int iOffset, int iAmt ) global() argument
77942 sqlite3BtreeTransferRow(BtCursor *pDest, BtCursor *pSrc, i64 iKey) global() argument
79769 Btree *pDest; /* Destination b-tree file */ global() member
93177 Mem *pDest; /* Where to write the extracted value */ global() local
95992 VdbeCursor *pDest; /* Cursor to write to */ global() local
98500 Mem *pDest; global() local
131321 xferCompatibleIndex(Index *pDest, Index *pSrc) global() argument
131382 xferOptimization( Parse *pParse, Table *pDest, Select *pSelect, int onError, int iDbDest ) global() argument
138318 sqlite3SelectDestInit(SelectDest *pDest, int eDest, int iParm) global() argument
139299 selectInnerLoop( Parse *pParse, Select *p, int srcTab, SortCtx *pSort, DistinctCtx *pDistinct, SelectDest *pDest, int iContinue, int iBreak ) global() argument
141438 generateOutputSubroutine( Parse *pParse, Select *p, SelectDest *pIn, SelectDest *pDest, int regReturn, int regPrev, KeyInfo *pKeyInfo, int iBreak ) global() argument
156741 whereOrMove(WhereOrSet *pDest, WhereOrSet *pSrc) global() argument
[all...]
H A Dshell.c22072 sqlite3 *pDest; in do_meta_command() local
22107 rc = sqlite3_open_v2(zDestFile, &pDest, in do_meta_command()
22111 close_db(pDest); in do_meta_command()
22115 sqlite3_exec(pDest, "PRAGMA synchronous=OFF; PRAGMA journal_mode=OFF;", in do_meta_command()
22119 pBackup = sqlite3_backup_init(pDest, "main", p->db, zDb); in do_meta_command()
22121 utf8_printf(stderr, "Error: %s\n", sqlite3_errmsg(pDest)); in do_meta_command()
22122 close_db(pDest); in do_meta_command()
22130 utf8_printf(stderr, "Error: %s\n", sqlite3_errmsg(pDest)); in do_meta_command()
22133 close_db(pDest); in do_meta_command()
/third_party/astc-encoder/Source/
H A Dtinyexr.h1131 int mz_compress(unsigned char *pDest, mz_ulong *pDest_len,
1133 int mz_compress2(unsigned char *pDest, mz_ulong *pDest_len,
1184 int mz_uncompress(unsigned char *pDest, mz_ulong *pDest_len,
2156 int mz_compress2(unsigned char *pDest, mz_ulong *pDest_len, in mz_compress2() argument
2167 stream.next_out = pDest; in mz_compress2()
2183 int mz_compress(unsigned char *pDest, mz_ulong *pDest_len, in mz_compress() argument
2185 return mz_compress2(pDest, pDest_len, pSource, source_len, in mz_compress()
2364 int mz_uncompress(unsigned char *pDest, mz_ulong *pDest_len, in mz_uncompress() argument
2375 stream.next_out = pDest; in mz_uncompress()
/third_party/sqlite/include/
H A Dsqlite3.h9102 sqlite3 *pDest, /* Destination database handle */

Completed in 230 milliseconds