Home | History | Annotate | Download | only in cintltst

Lines Matching refs:realSourceEnd

388     const UChar *realSourceEnd;
421 realSourceEnd = source + sourceLen;
429 sourceLimit = nct_min(src + gInBufferSize, realSourceEnd);
431 doFlush = (UBool)(sourceLimit == realSourceEnd);
450 } while ( (status == U_BUFFER_OVERFLOW_ERROR) || (U_SUCCESS(status) && sourceLimit < realSourceEnd) );
538 const char *realSourceEnd;
579 realSourceEnd = src + sourcelen;
587 srcLimit = nct_min(realSourceEnd, src + gInBufferSize);
606 (UBool)(srcLimit == realSourceEnd), /* flush if we're at the end of hte source data */
611 } while ( (status == U_BUFFER_OVERFLOW_ERROR) || (U_SUCCESS(status) && (srcLimit < realSourceEnd)) ); /* while we just need another buffer */