Home | History | Annotate | Download | only in cintltst

Lines Matching refs:sourceLimit

1020     UChar *sourceLimit=0;
1037 sourceLimit=(UChar*)src+(sourceLen);
1045 sourceLimit,
1110 uint8_t *sourceLimit=0;
1130 sourceLimit=(uint8_t*)(src+(sourceLen));
1141 (const char *)sourceLimit,
1210 const UChar *sourceLimit;
1258 sourceLimit = nct_min(src + gInBufferSize, realSourceEnd);
1260 doFlush = (UBool)(sourceLimit == realSourceEnd);
1267 log_verbose("calling fromUnicode @ SOURCE:%08lx to %08lx TARGET: %08lx to %08lx, flush=%s\n", src,sourceLimit, targ,end, doFlush?"TRUE":"FALSE");
1277 sourceLimit,
1286 } while ( (status == U_BUFFER_OVERFLOW_ERROR) || (U_SUCCESS(status) && sourceLimit < realSourceEnd) );
1800 const char *source, *sourceLimit;
1819 sourceLimit=source+length;
1824 ucnv_toUnicode(cnv, &target, targetLimit, &source, sourceLimit, NULL, FALSE, &errorCode);
1825 if(U_FAILURE(errorCode) || source!=sourceLimit || target!=buffer) {
1827 cnvName, length, u_errorName(errorCode), (int)(sourceLimit-source), (int)(target-buffer));
1831 source=sourceLimit;
1833 ucnv_toUnicode(cnv, &target, targetLimit, &source, sourceLimit, NULL, TRUE, &errorCode);
1845 ucnv_toUnicode(cnv, &target, targetLimit, &source, sourceLimit, NULL, TRUE, &errorCode);
1846 if(errorCode!=U_TRUNCATED_CHAR_FOUND || source!=sourceLimit || target!=buffer) {
1848 cnvName, length, u_errorName(errorCode), (int)(sourceLimit-source), (int)(target-buffer));