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

/external/icu/icu4c/source/test/perf/utfperf/
H A Dutfperf.cpp164 const UChar *pIn, *pInLimit; local
174 pInLimit=input+inputLength;
185 /* convert a block of [pIn..pInLimit[ to the encoding in intermediate[] */
187 ucnv_fromUnicode(cnv, &pInter, pInterLimit, &pIn, pInLimit, NULL, TRUE, pErrorCode);
195 } else if(pIn==pInLimit) {
231 const UChar *pIn, *pInLimit; local
238 pInLimit=input+inputLength;
246 ucnv_fromUnicode(cnv, &pInter, pInterLimit, &pIn, pInLimit, NULL, TRUE, pErrorCode);
284 const char *pIn, *pInLimit; local
293 pInLimit
[all...]
/external/lz4/lib/
H A Dlz4.c394 static unsigned LZ4_count(const BYTE* pIn, const BYTE* pMatch, const BYTE* pInLimit) argument
398 while (likely(pIn<pInLimit-(STEPSIZE-1)))
406 if (LZ4_64bits()) if ((pIn<(pInLimit-3)) && (LZ4_read32(pMatch) == LZ4_read32(pIn))) { pIn+=4; pMatch+=4; }
407 if ((pIn<(pInLimit-1)) && (LZ4_read16(pMatch) == LZ4_read16(pIn))) { pIn+=2; pMatch+=2; }
408 if ((pIn<pInLimit) && (*pMatch == *pIn)) pIn++;

Completed in 138 milliseconds