Searched refs:maxNbAttempts (Results 1 – 2 of 2) sorted by relevance
/external/u-boot/lib/zstd/ |
D | zstd_opt.h | 346 …D_CCtx *zc, const BYTE *const ip, const BYTE *const iLimit, const U32 maxNbAttempts, const U32 mls… in ZSTD_BtGetAllMatches() argument 351 ZSTD_updateTree(zc, ip, iLimit, maxNbAttempts, mls); in ZSTD_BtGetAllMatches() 352 return ZSTD_insertBtAndGetAllMatches(zc, ip, iLimit, maxNbAttempts, mls, 0, matches, minMatchLen); in ZSTD_BtGetAllMatches() 356 …const BYTE *ip, const BYTE *const iHighLimit, const U32 maxNbAttempts, const U32 matchLengthSearch, in ZSTD_BtGetAllMatches_selectMLS() argument 360 case 3: return ZSTD_BtGetAllMatches(zc, ip, iHighLimit, maxNbAttempts, 3, matches, minMatchLen); in ZSTD_BtGetAllMatches_selectMLS() 362 case 4: return ZSTD_BtGetAllMatches(zc, ip, iHighLimit, maxNbAttempts, 4, matches, minMatchLen); in ZSTD_BtGetAllMatches_selectMLS() 363 case 5: return ZSTD_BtGetAllMatches(zc, ip, iHighLimit, maxNbAttempts, 5, matches, minMatchLen); in ZSTD_BtGetAllMatches_selectMLS() 365 case 6: return ZSTD_BtGetAllMatches(zc, ip, iHighLimit, maxNbAttempts, 6, matches, minMatchLen); in ZSTD_BtGetAllMatches_selectMLS() 370 …D_CCtx *zc, const BYTE *const ip, const BYTE *const iLimit, const U32 maxNbAttempts, const U32 mls, in ZSTD_BtGetAllMatches_extDict() argument 375 ZSTD_updateTree_extDict(zc, ip, iLimit, maxNbAttempts, mls); in ZSTD_BtGetAllMatches_extDict() [all …]
|
/external/lz4/lib/ |
D | lz4hc.c | 214 const int maxNbAttempts, in LZ4HC_InsertAndGetWiderMatch() argument 230 int nbAttempts = maxNbAttempts; in LZ4HC_InsertAndGetWiderMatch() 387 const int maxNbAttempts, in LZ4HC_InsertAndFindBestMatch() argument 395 …GetWiderMatch(hc4, ip, ip, iLimit, MINMATCH-1, matchpos, &uselessPtr, maxNbAttempts, patternAnalys… in LZ4HC_InsertAndFindBestMatch() 485 unsigned maxNbAttempts, in LZ4HC_compress_hashChain() argument 491 const int patternAnalysis = (maxNbAttempts > 128); /* levels 9+ */ in LZ4HC_compress_hashChain() 519 …ml = LZ4HC_InsertAndFindBestMatch (ctx, ip, matchlimit, &ref, maxNbAttempts, patternAnalysis, dict… in LZ4HC_compress_hashChain() 529 maxNbAttempts, patternAnalysis, 0, dict, favorCompressionRatio); in LZ4HC_compress_hashChain() 574 maxNbAttempts, patternAnalysis, 0, dict, favorCompressionRatio); in LZ4HC_compress_hashChain()
|