Home | History | Annotate | Download | only in cintltst

Lines Matching refs:realSourceEnd

374     const UChar *realSourceEnd;
407 realSourceEnd = source + sourceLen;
415 sourceLimit = nct_min(src + gInBufferSize, realSourceEnd);
417 doFlush = (UBool)(sourceLimit == realSourceEnd);
436 } while ( (status == U_BUFFER_OVERFLOW_ERROR) || (U_SUCCESS(status) && sourceLimit < realSourceEnd) );
524 const char *realSourceEnd;
565 realSourceEnd = src + sourcelen;
573 srcLimit = nct_min(realSourceEnd, src + gInBufferSize);
592 (UBool)(srcLimit == realSourceEnd), /* flush if we're at the end of hte source data */
597 } while ( (status == U_BUFFER_OVERFLOW_ERROR) || (U_SUCCESS(status) && (srcLimit < realSourceEnd)) ); /* while we just need another buffer */