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

/external/icu/icu4c/source/test/perf/utfperf/
H A Dutfperf.cpp168 const UChar *pIn, *pInLimit; local
178 pInLimit=input+inputLength;
189 /* convert a block of [pIn..pInLimit[ to the encoding in intermediate[] */
191 ucnv_fromUnicode(cnv, &pInter, pInterLimit, &pIn, pInLimit, NULL, TRUE, pErrorCode);
199 } else if(pIn==pInLimit) {
235 const UChar *pIn, *pInLimit; local
242 pInLimit=input+inputLength;
250 ucnv_fromUnicode(cnv, &pInter, pInterLimit, &pIn, pInLimit, NULL, TRUE, pErrorCode);
288 const char *pIn, *pInLimit; local
297 pInLimit
[all...]
/external/lz4/lib/
H A Dlz4.c351 static unsigned LZ4_count(const BYTE* pIn, const BYTE* pMatch, const BYTE* pInLimit) argument
355 while (likely(pIn<pInLimit-(STEPSIZE-1))) {
362 if ((STEPSIZE==8) && (pIn<(pInLimit-3)) && (LZ4_read32(pMatch) == LZ4_read32(pIn))) { pIn+=4; pMatch+=4; }
363 if ((pIn<(pInLimit-1)) && (LZ4_read16(pMatch) == LZ4_read16(pIn))) { pIn+=2; pMatch+=2; }
364 if ((pIn<pInLimit) && (*pMatch == *pIn)) pIn++;

Completed in 765 milliseconds