Home | History | Annotate | Download | only in common

Lines Matching refs:pDest

1402     UChar *pDest = dest;
1410 while((index < srcLength)&&(pDest<pDestLimit)){
1413 *pDest++=(UChar)ch;
1417 *(pDest++)=(UChar)ch;
1419 *(pDest++)=U16_LEAD(ch);
1420 if(pDest<pDestLimit){
1421 *(pDest++)=U16_TRAIL(ch);
1440 reqLength+=(int32_t)(pDest - dest);