• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/ICU-511.35/icuSources/common/

Lines Matching defs:pDest

48     UChar *pDest;
68 pDest = dest;
78 if(pDest < destLimit) {
79 *pDest++ = (UChar)ch;
99 if(pDest < destLimit) {
100 *pDest++ = (UChar)ch;
106 if(pDest!=NULL && ((pDest + 2) <= destLimit)) {
107 *pDest++ = U16_LEAD(ch);
108 *pDest++ = U16_TRAIL(ch);
123 reqLength += (int32_t)(pDest - dest);
163 UChar32 *pDest;
183 pDest = dest;
192 if(pDest < destLimit) {
193 *pDest++ = ch;
222 if(pDest < destLimit) {
223 *pDest++ = ch;
229 reqLength += (int32_t)(pDest - dest);
407 UChar *pDest = dest;
452 while(((ch = *pSrc) != 0) && (pDest < pDestLimit)) {
454 *pDest++=(UChar)ch;
464 *pDest++ = (UChar)((ch << 12) | (t1 << 6) | t2);
473 *pDest++ = (UChar)(((ch & 0x1f) << 6) | t1);
486 *(pDest++)=(UChar)ch;
488 *(pDest++)=U16_LEAD(ch);
489 if(pDest<pDestLimit) {
490 *(pDest++)=U16_TRAIL(ch);
548 count = (int32_t)(pDestLimit - pDest);
564 *pDest++=(UChar)ch;
574 *pDest++ = (UChar)((ch << 12) | (t1 << 6) | t2);
583 *pDest++ = (UChar)(((ch & 0x1f) << 6) | t1);
607 *(pDest++)=(UChar)ch;
609 *(pDest++)=U16_LEAD(ch);
610 *(pDest++)=U16_TRAIL(ch);
616 while((pSrc<pSrcLimit) && (pDest<pDestLimit)) {
619 *pDest++=(UChar)ch;
630 *pDest++ = (UChar)((ch << 12) | (t1 << 6) | t2);
640 *pDest++ = (UChar)(((ch & 0x1f) << 6) | t1);
653 *(pDest++)=(UChar)ch;
655 *(pDest++)=U16_LEAD(ch);
656 if(pDest<pDestLimit){
657 *(pDest++)=U16_TRAIL(ch);
707 reqLength+=(int32_t)(pDest - dest);
744 UChar *pDest = dest;
766 while(((ch = *pSrc) != 0) && (pDest < pDestLimit)) {
773 *pDest++=(UChar)ch;
779 *pDest++ = (UChar)((ch << 6) + t1 - 0x3080);
787 *pDest++ = (UChar)((ch << 12) + (t1 << 6) + t2 - 0x2080);
796 *(pDest++) = U16_LEAD(ch);
797 if(pDest < pDestLimit) {
798 *(pDest++) = U16_TRAIL(ch);
808 *pDest++ = 0xfffd;
876 *pDest++=(UChar)ch;
879 *pDest++ = (UChar)((ch << 6) + *pSrc++ - 0x3080);
884 *pDest++ = (UChar)(ch + *pSrc++ - 0x2080);
890 *(pDest++) = U16_LEAD(ch);
891 *(pDest++) = U16_TRAIL(ch);
906 *pDest++=(UChar)ch;
911 *pDest++ = (UChar)((ch << 6) + *pSrc++ - 0x3080);
919 *pDest++ = (UChar)(ch + *pSrc++ - 0x2080);
929 *(pDest++) = U16_LEAD(ch);
930 *(pDest++) = U16_TRAIL(ch);
937 *pDest++ = 0xfffd;
942 reqLength+=(int32_t)(pDest - dest);
955 _appendUTF8(uint8_t *pDest, UChar32 c) {
958 *pDest++=(uint8_t)c;
960 *pDest++=(uint8_t)((c>>6)|0xc0);
961 *pDest++=(uint8_t)((c&0x3f)|0x80);
963 *pDest++=(uint8_t)((c>>12)|0xe0);
964 *pDest++=(uint8_t)(((c>>6)&0x3f)|0x80);
965 *pDest++=(uint8_t)(((c)&0x3f)|0x80);
967 *pDest++=(uint8_t)(((c)>>18)|0xf0);
968 *pDest++=(uint8_t)((((c)>>12)&0x3f)|0x80);
969 *pDest++=(uint8_t)((((c)>>6)&0x3f)|0x80);
970 *pDest++=(uint8_t)(((c)&0x3f)|0x80);
972 return pDest;
986 uint8_t *pDest = (uint8_t *)dest;
987 uint8_t *pDestLimit = (pDest!=NULL)?(pDest + destCapacity):NULL;
1012 if(pDest<pDestLimit) {
1013 *pDest++ = (uint8_t)ch;
1019 if((pDestLimit - pDest) >= 2) {
1020 *pDest++=(uint8_t)((ch>>6)|0xc0);
1021 *pDest++=(uint8_t)((ch&0x3f)|0x80);
1027 if((pDestLimit - pDest) >= 3) {
1028 *pDest++=(uint8_t)((ch>>12)|0xe0);
1029 *pDest++=(uint8_t)(((ch>>6)&0x3f)|0x80);
1030 *pDest++=(uint8_t)((ch&0x3f)|0x80);
1052 if((pDestLimit - pDest) >= length) {
1054 pDest=_appendUTF8(pDest, ch);
1092 count = (int32_t)((pDestLimit - pDest) / 3);
1107 *pDest++ = (uint8_t)ch;
1109 *pDest++=(uint8_t)((ch>>6)|0xc0);
1110 *pDest++=(uint8_t)((ch&0x3f)|0x80);
1112 *pDest++=(uint8_t)((ch>>12)|0xe0);
1113 *pDest++=(uint8_t)(((ch>>6)&0x3f)|0x80);
1114 *pDest++=(uint8_t)((ch&0x3f)|0x80);
1131 *pDest++=(uint8_t)((ch>>18)|0xf0);
1132 *pDest++=(uint8_t)(((ch>>12)&0x3f)|0x80);
1133 *pDest++=(uint8_t)(((ch>>6)&0x3f)|0x80);
1134 *pDest++=(uint8_t)((ch&0x3f)|0x80);
1146 pDest=_appendUTF8(pDest, ch);
1155 if(pDest<pDestLimit) {
1156 *pDest++ = (uint8_t)ch;
1162 if((pDestLimit - pDest) >= 2) {
1163 *pDest++=(uint8_t)((ch>>6)|0xc0);
1164 *pDest++=(uint8_t)((ch&0x3f)|0x80);
1170 if((pDestLimit - pDest) >= 3) {
1171 *pDest++=(uint8_t)((ch>>12)|0xe0);
1172 *pDest++=(uint8_t)(((ch>>6)&0x3f)|0x80);
1173 *pDest++=(uint8_t)((ch&0x3f)|0x80);
1194 if((pDestLimit - pDest) >= length) {
1196 pDest=_appendUTF8(pDest, ch);
1225 reqLength+=(int32_t)(pDest - (uint8_t *)dest);
1263 UChar *pDest = dest;
1295 while(((ch = *pSrc) != 0) && ch <= 0x7f && (pDest < pDestLimit)) {
1296 *pDest++=(UChar)ch;
1300 reqLength=(int32_t)(pDest - dest);
1315 count = (int32_t)(pDestLimit - pDest);
1322 *pDest++=(UChar)ch;
1347 *pDest++=(UChar)ch;
1357 *pDest++ = (UChar)((ch << 12) | (t1 << 6) | t2);
1366 *pDest++ = (UChar)(((ch & 0x1f) << 6) | t1);
1387 *(pDest++)=(UChar)subchar;
1389 *(pDest++)=U16_LEAD(subchar);
1390 *(pDest++)=U16_TRAIL(subchar);
1397 while((pSrc<pSrcLimit) && (pDest<pDestLimit)) {
1400 *pDest++=(UChar)ch;
1411 *pDest++ = (UChar)((ch << 12) | (t1 << 6) | t2);
1421 *pDest++ = (UChar)(((ch & 0x1f) << 6) | t1);
1436 *(pDest++)=(UChar)subchar;
1438 *(pDest++)=U16_LEAD(subchar);
1439 if(pDest<pDestLimit) {
1440 *(pDest++)=U16_TRAIL(subchar);
1497 reqLength+=(int32_t)(pDest - dest);
1517 uint8_t *pDest = (uint8_t *)dest;
1518 uint8_t *pDestLimit = pDest + destCapacity;
1535 while((ch=*src)<=0x7f && ch != 0 && pDest<pDestLimit) {
1536 *pDest++ = (uint8_t)ch;
1540 reqLength=(int32_t)(pDest - (uint8_t *)dest);
1555 count = (int32_t)(pDestLimit - pDest);
1562 *pDest++=(uint8_t)ch;
1587 *pDest++ = (uint8_t)ch;
1589 *pDest++=(uint8_t)((ch>>6)|0xc0);
1590 *pDest++=(uint8_t)((ch&0x3f)|0x80);
1592 *pDest++=(uint8_t)((ch>>12)|0xe0);
1593 *pDest++=(uint8_t)(((ch>>6)&0x3f)|0x80);
1594 *pDest++=(uint8_t)((ch&0x3f)|0x80);
1602 if(pDest<pDestLimit) {
1603 *pDest++ = (uint8_t)ch;
1609 if((pDestLimit - pDest) >= 2) {
1610 *pDest++=(uint8_t)((ch>>6)|0xc0);
1611 *pDest++=(uint8_t)((ch&0x3f)|0x80);
1617 if((pDestLimit - pDest) >= 3) {
1618 *pDest++=(uint8_t)((ch>>12)|0xe0);
1619 *pDest++=(uint8_t)(((ch>>6)&0x3f)|0x80);
1620 *pDest++=(uint8_t)((ch&0x3f)|0x80);
1638 reqLength+=(int32_t)(pDest - (uint8_t *)dest);