HomeSort by relevance Sort by last modified time
    Searched refs:pInLimit (Results 1 - 2 of 2) sorted by null

  /external/icu/icu4c/source/test/perf/utfperf/
utfperf.cpp 168 const UChar *pIn, *pInLimit;
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;
242 pInLimit=input+inputLength;
250 ucnv_fromUnicode(cnv, &pInter, pInterLimit, &pIn, pInLimit, NULL, TRUE, pErrorCode);
288 const char *pIn, *pInLimit;
297 pInLimit=input8+input8Length
    [all...]
  /external/lz4/lib/
lz4.c 421 unsigned LZ4_count(const BYTE* pIn, const BYTE* pMatch, const BYTE* pInLimit)
425 if (likely(pIn < pInLimit-(STEPSIZE-1))) {
433 while (likely(pIn < pInLimit-(STEPSIZE-1))) {
440 if ((STEPSIZE==8) && (pIn<(pInLimit-3)) && (LZ4_read32(pMatch) == LZ4_read32(pIn))) { pIn+=4; pMatch+=4; }
441 if ((pIn<(pInLimit-1)) && (LZ4_read16(pMatch) == LZ4_read16(pIn))) { pIn+=2; pMatch+=2; }
442 if ((pIn<pInLimit) && (*pMatch == *pIn)) pIn++;
    [all...]

Completed in 620 milliseconds