Searched refs:pInLimit (Results 1 – 2 of 2) sorted by relevance
/external/icu/icu4c/source/test/perf/utfperf/ |
D | utfperf.cpp | 164 const UChar *pIn, *pInLimit; in call() local 174 pInLimit=input+inputLength; in call() 187 ucnv_fromUnicode(cnv, &pInter, pInterLimit, &pIn, pInLimit, NULL, TRUE, pErrorCode); in call() 195 } else if(pIn==pInLimit) { in call() 231 const UChar *pIn, *pInLimit; in call() local 238 pInLimit=input+inputLength; in call() 246 ucnv_fromUnicode(cnv, &pInter, pInterLimit, &pIn, pInLimit, NULL, TRUE, pErrorCode); in call() 284 const char *pIn, *pInLimit; in call() local 293 pInLimit=input8+input8Length; in call() 306 &pIn, pInLimit, in call()
|
/external/lz4/lib/ |
D | lz4.c | 394 static unsigned LZ4_count(const BYTE* pIn, const BYTE* pMatch, const BYTE* pInLimit) in LZ4_count() argument 398 while (likely(pIn<pInLimit-(STEPSIZE-1))) in LZ4_count() 406 …if (LZ4_64bits()) if ((pIn<(pInLimit-3)) && (LZ4_read32(pMatch) == LZ4_read32(pIn))) { pIn+=4; pMa… in LZ4_count() 407 if ((pIn<(pInLimit-1)) && (LZ4_read16(pMatch) == LZ4_read16(pIn))) { pIn+=2; pMatch+=2; } in LZ4_count() 408 if ((pIn<pInLimit) && (*pMatch == *pIn)) pIn++; in LZ4_count()
|