Lines Matching refs:pDestLimit

408     UChar *pDestLimit = dest+destCapacity;  in u_strFromUTF8WithSub()  local
452 while(((ch = *pSrc) != 0) && (pDest < pDestLimit)) { in u_strFromUTF8WithSub()
489 if(pDest<pDestLimit) { in u_strFromUTF8WithSub()
548 count = (int32_t)(pDestLimit - pDest); in u_strFromUTF8WithSub()
616 while((pSrc<pSrcLimit) && (pDest<pDestLimit)) { in u_strFromUTF8WithSub()
656 if(pDest<pDestLimit){ in u_strFromUTF8WithSub()
763 UChar *pDestLimit = (dest!=NULL)?(dest+destCapacity):NULL; in u_strFromUTF8Lenient() local
766 while(((ch = *pSrc) != 0) && (pDest < pDestLimit)) { in u_strFromUTF8Lenient()
797 if(pDest < pDestLimit) { in u_strFromUTF8Lenient()
987 uint8_t *pDestLimit = (pDest!=NULL)?(pDest + destCapacity):NULL; in u_strToUTF8WithSub() local
1012 if(pDest<pDestLimit) { in u_strToUTF8WithSub()
1019 if((pDestLimit - pDest) >= 2) { in u_strToUTF8WithSub()
1027 if((pDestLimit - pDest) >= 3) { in u_strToUTF8WithSub()
1052 if((pDestLimit - pDest) >= length) { in u_strToUTF8WithSub()
1092 count = (int32_t)((pDestLimit - pDest) / 3); in u_strToUTF8WithSub()
1155 if(pDest<pDestLimit) { in u_strToUTF8WithSub()
1162 if((pDestLimit - pDest) >= 2) { in u_strToUTF8WithSub()
1170 if((pDestLimit - pDest) >= 3) { in u_strToUTF8WithSub()
1194 if((pDestLimit - pDest) >= length) { in u_strToUTF8WithSub()
1264 UChar *pDestLimit = dest+destCapacity; in u_strFromJavaModifiedUTF8WithSub() local
1295 while(((ch = *pSrc) != 0) && ch <= 0x7f && (pDest < pDestLimit)) { in u_strFromJavaModifiedUTF8WithSub()
1315 count = (int32_t)(pDestLimit - pDest); in u_strFromJavaModifiedUTF8WithSub()
1397 while((pSrc<pSrcLimit) && (pDest<pDestLimit)) { in u_strFromJavaModifiedUTF8WithSub()
1439 if(pDest<pDestLimit) { in u_strFromJavaModifiedUTF8WithSub()
1518 uint8_t *pDestLimit = pDest + destCapacity; in u_strToJavaModifiedUTF8() local
1535 while((ch=*src)<=0x7f && ch != 0 && pDest<pDestLimit) { in u_strToJavaModifiedUTF8()
1555 count = (int32_t)(pDestLimit - pDest); in u_strToJavaModifiedUTF8()
1602 if(pDest<pDestLimit) { in u_strToJavaModifiedUTF8()
1609 if((pDestLimit - pDest) >= 2) { in u_strToJavaModifiedUTF8()
1617 if((pDestLimit - pDest) >= 3) { in u_strToJavaModifiedUTF8()