Lines Matching refs:sourceLimit

1021     UChar *sourceLimit=0;  in convertFromU()  local
1038 sourceLimit=(UChar*)src+(sourceLen); in convertFromU()
1046 sourceLimit, in convertFromU()
1111 uint8_t *sourceLimit=0; in convertToU() local
1131 sourceLimit=(uint8_t*)(src+(sourceLen)); in convertToU()
1142 (const char *)sourceLimit, in convertToU()
1211 const UChar *sourceLimit; in testConvertFromU() local
1259 sourceLimit = nct_min(src + gInBufferSize, realSourceEnd); in testConvertFromU()
1261 doFlush = (UBool)(sourceLimit == realSourceEnd); in testConvertFromU()
1268 …code @ SOURCE:%08lx to %08lx TARGET: %08lx to %08lx, flush=%s\n", src,sourceLimit, targ,end, doFl… in testConvertFromU()
1278 sourceLimit, in testConvertFromU()
1287 …} while ( (status == U_BUFFER_OVERFLOW_ERROR) || (U_SUCCESS(status) && sourceLimit < realSourceEnd… in testConvertFromU()
1800 const char *source, *sourceLimit; in doTestTruncated() local
1819 sourceLimit=source+length; in doTestTruncated()
1824 ucnv_toUnicode(cnv, &target, targetLimit, &source, sourceLimit, NULL, FALSE, &errorCode); in doTestTruncated()
1825 if(U_FAILURE(errorCode) || source!=sourceLimit || target!=buffer) { in doTestTruncated()
1827 … cnvName, length, u_errorName(errorCode), (int)(sourceLimit-source), (int)(target-buffer)); in doTestTruncated()
1831 source=sourceLimit; in doTestTruncated()
1833 ucnv_toUnicode(cnv, &target, targetLimit, &source, sourceLimit, NULL, TRUE, &errorCode); in doTestTruncated()
1845 ucnv_toUnicode(cnv, &target, targetLimit, &source, sourceLimit, NULL, TRUE, &errorCode); in doTestTruncated()
1846 if(errorCode!=U_TRUNCATED_CHAR_FOUND || source!=sourceLimit || target!=buffer) { in doTestTruncated()
1848 … cnvName, length, u_errorName(errorCode), (int)(sourceLimit-source), (int)(target-buffer)); in doTestTruncated()