Lines Matching refs:destLimit
1720 char *originalDest, *destLimit; in ucnv_fromUChars() local
1744 destLimit=dest+destCapacity; in ucnv_fromUChars()
1747 if(destLimit<dest || (destLimit==NULL && dest!=NULL)) { in ucnv_fromUChars()
1748 destLimit=(char *)U_MAX_PTR(dest); in ucnv_fromUChars()
1752 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, TRUE, pErrorCode); in ucnv_fromUChars()
1759 destLimit=buffer+sizeof(buffer); in ucnv_fromUChars()
1763 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, TRUE, pErrorCode); in ucnv_fromUChars()
1780 UChar *originalDest, *destLimit; in ucnv_toUChars() local
1804 destLimit=dest+destCapacity; in ucnv_toUChars()
1807 if(destLimit<dest || (destLimit==NULL && dest!=NULL)) { in ucnv_toUChars()
1808 destLimit=(UChar *)U_MAX_PTR(dest); in ucnv_toUChars()
1812 ucnv_toUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, TRUE, pErrorCode); in ucnv_toUChars()
1820 destLimit=buffer+sizeof(buffer)/U_SIZEOF_UCHAR; in ucnv_toUChars()
1824 ucnv_toUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, TRUE, pErrorCode); in ucnv_toUChars()