Searched refs:maxML (Results 1 – 4 of 4) sorted by relevance
/external/zstd/lib/compress/ |
D | zstd_opt.c | 991 { U32 const maxML = matches[nbMatches-1].len; in ZSTD_compressBlock_opt_generic() local 994 nbMatches, maxML, maxOffset, (U32)(ip-prefixStart)); in ZSTD_compressBlock_opt_generic() 996 if (maxML > sufficient_len) { in ZSTD_compressBlock_opt_generic() 998 lastSequence.mlen = maxML; in ZSTD_compressBlock_opt_generic() 1001 maxML, sufficient_len); in ZSTD_compressBlock_opt_generic() 1100 { U32 const maxML = matches[nbMatches-1].len; in ZSTD_compressBlock_opt_generic() local 1102 inr-istart, cur, nbMatches, maxML); in ZSTD_compressBlock_opt_generic() 1104 if ( (maxML > sufficient_len) in ZSTD_compressBlock_opt_generic() 1105 || (cur + maxML >= ZSTD_OPT_NUM) ) { in ZSTD_compressBlock_opt_generic() 1106 lastSequence.mlen = maxML; in ZSTD_compressBlock_opt_generic()
|
/external/icu/icu4c/source/i18n/ |
D | regexcmp.cpp | 2299 int32_t maxML = maxMatchLength(fMatchOpenParen, patEnd); in handleCloseParen() local 2300 if (URX_TYPE(maxML) != 0) { in handleCloseParen() 2304 if (maxML == INT32_MAX) { in handleCloseParen() 2315 U_ASSERT(minML <= maxML); in handleCloseParen() 2320 fRXPat->fCompiledPat->setElementAt(maxML, fMatchOpenParen-1); in handleCloseParen() 2342 int32_t maxML = maxMatchLength(fMatchOpenParen, patEnd); in handleCloseParen() local 2343 if (URX_TYPE(maxML) != 0) { in handleCloseParen() 2347 if (maxML == INT32_MAX) { in handleCloseParen() 2359 U_ASSERT(minML <= maxML); in handleCloseParen() 2364 fRXPat->fCompiledPat->setElementAt(maxML, fMatchOpenParen-2); in handleCloseParen()
|
D | rematch.cpp | 3900 int32_t maxML = (int32_t)pat[fp->fPatIdx++]; in MatchAt() local 3904 maxML *= 3; in MatchAt() 3906 U_ASSERT(minML <= maxML); in MatchAt() 3932 if (lbStartIdx < 0 || lbStartIdx < fp->fInputIdx - maxML) { in MatchAt() 3983 int32_t maxML = (int32_t)pat[fp->fPatIdx++]; in MatchAt() local 3987 maxML *= 3; in MatchAt() 3991 U_ASSERT(minML <= maxML); in MatchAt() 4018 if (lbStartIdx < 0 || lbStartIdx < fp->fInputIdx - maxML) { in MatchAt() 5356 int32_t maxML = (int32_t)pat[fp->fPatIdx++]; in MatchChunkAt() local 5357 U_ASSERT(minML <= maxML); in MatchChunkAt() [all …]
|
/external/lz4/lib/ |
D | lz4hc.c | 390 … size_t const maxML = MIN(currentSegmentLength, srcPatternLength); in LZ4HC_InsertAndGetWiderMatch() local 391 if ((size_t)longest < maxML) { in LZ4HC_InsertAndGetWiderMatch() 394 assert(maxML < 2 GB); in LZ4HC_InsertAndGetWiderMatch() 395 longest = (int)maxML; in LZ4HC_InsertAndGetWiderMatch()
|