Home
last modified time | relevance | path

Searched refs:pInLimit (Results 1 – 2 of 2) sorted by relevance

/external/icu/icu4c/source/test/perf/utfperf/
Dutfperf.cpp168 const UChar *pIn, *pInLimit; in call() local
178 pInLimit=input+inputLength; in call()
191 ucnv_fromUnicode(cnv, &pInter, pInterLimit, &pIn, pInLimit, NULL, TRUE, pErrorCode); in call()
199 } else if(pIn==pInLimit) { in call()
235 const UChar *pIn, *pInLimit; in call() local
242 pInLimit=input+inputLength; in call()
250 ucnv_fromUnicode(cnv, &pInter, pInterLimit, &pIn, pInLimit, NULL, TRUE, pErrorCode); in call()
288 const char *pIn, *pInLimit; in call() local
297 pInLimit=input8+input8Length; in call()
310 &pIn, pInLimit, in call()
/external/lz4/lib/
Dlz4.c351 static unsigned LZ4_count(const BYTE* pIn, const BYTE* pMatch, const BYTE* pInLimit) in LZ4_count() argument
355 while (likely(pIn<pInLimit-(STEPSIZE-1))) { in LZ4_count()
362 …if ((STEPSIZE==8) && (pIn<(pInLimit-3)) && (LZ4_read32(pMatch) == LZ4_read32(pIn))) { pIn+=4; pMat… in LZ4_count()
363 if ((pIn<(pInLimit-1)) && (LZ4_read16(pMatch) == LZ4_read16(pIn))) { pIn+=2; pMatch+=2; } in LZ4_count()
364 if ((pIn<pInLimit) && (*pMatch == *pIn)) pIn++; in LZ4_count()