/kernel/linux/linux-5.10/lib/lz4/ |
H A D | lz4hc_compress.c | 104 const int maxNbAttempts) in LZ4HC_InsertAndFindBestMatch() 115 int nbAttempts = maxNbAttempts; in LZ4HC_InsertAndFindBestMatch() 176 const int maxNbAttempts) in LZ4HC_InsertAndGetWiderMatch() 188 int nbAttempts = maxNbAttempts; in LZ4HC_InsertAndGetWiderMatch() 357 unsigned int maxNbAttempts; in LZ4HC_compress_generic() local 372 maxNbAttempts = 1 << (compressionLevel - 1); in LZ4HC_compress_generic() 380 matchlimit, (&ref), maxNbAttempts); in LZ4HC_compress_generic() 396 &start2, maxNbAttempts); in LZ4HC_compress_generic() 458 maxNbAttempts); in LZ4HC_compress_generic() 99 LZ4HC_InsertAndFindBestMatch( LZ4HC_CCtx_internal *hc4, const BYTE *ip, const BYTE * const iLimit, const BYTE **matchpos, const int maxNbAttempts) LZ4HC_InsertAndFindBestMatch() argument 168 LZ4HC_InsertAndGetWiderMatch( LZ4HC_CCtx_internal *hc4, const BYTE * const ip, const BYTE * const iLowLimit, const BYTE * const iHighLimit, int longest, const BYTE **matchpos, const BYTE **startpos, const int maxNbAttempts) LZ4HC_InsertAndGetWiderMatch() argument
|
/kernel/linux/linux-6.6/lib/lz4/ |
H A D | lz4hc_compress.c | 104 const int maxNbAttempts) in LZ4HC_InsertAndFindBestMatch() 115 int nbAttempts = maxNbAttempts; in LZ4HC_InsertAndFindBestMatch() 176 const int maxNbAttempts) in LZ4HC_InsertAndGetWiderMatch() 188 int nbAttempts = maxNbAttempts; in LZ4HC_InsertAndGetWiderMatch() 357 unsigned int maxNbAttempts; in LZ4HC_compress_generic() local 372 maxNbAttempts = 1 << (compressionLevel - 1); in LZ4HC_compress_generic() 380 matchlimit, (&ref), maxNbAttempts); in LZ4HC_compress_generic() 396 &start2, maxNbAttempts); in LZ4HC_compress_generic() 458 maxNbAttempts); in LZ4HC_compress_generic() 99 LZ4HC_InsertAndFindBestMatch( LZ4HC_CCtx_internal *hc4, const BYTE *ip, const BYTE * const iLimit, const BYTE **matchpos, const int maxNbAttempts) LZ4HC_InsertAndFindBestMatch() argument 168 LZ4HC_InsertAndGetWiderMatch( LZ4HC_CCtx_internal *hc4, const BYTE * const ip, const BYTE * const iLowLimit, const BYTE * const iHighLimit, int longest, const BYTE **matchpos, const BYTE **startpos, const int maxNbAttempts) LZ4HC_InsertAndGetWiderMatch() argument
|
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | zstd_opt.h | 356 static U32 ZSTD_BtGetAllMatches(ZSTD_CCtx *zc, const BYTE *const ip, const BYTE *const iLimit, const U32 maxNbAttempts, const U32 mls, ZSTD_match_t *matches, in ZSTD_BtGetAllMatches() argument 361 ZSTD_updateTree(zc, ip, iLimit, maxNbAttempts, mls); in ZSTD_BtGetAllMatches() 362 return ZSTD_insertBtAndGetAllMatches(zc, ip, iLimit, maxNbAttempts, mls, 0, matches, minMatchLen); in ZSTD_BtGetAllMatches() 366 const BYTE *ip, const BYTE *const iHighLimit, const U32 maxNbAttempts, const U32 matchLengthSearch, in ZSTD_BtGetAllMatches_selectMLS() 370 case 3: return ZSTD_BtGetAllMatches(zc, ip, iHighLimit, maxNbAttempts, 3, matches, minMatchLen); in ZSTD_BtGetAllMatches_selectMLS() 372 case 4: return ZSTD_BtGetAllMatches(zc, ip, iHighLimit, maxNbAttempts, 4, matches, minMatchLen); in ZSTD_BtGetAllMatches_selectMLS() 373 case 5: return ZSTD_BtGetAllMatches(zc, ip, iHighLimit, maxNbAttempts, 5, matches, minMatchLen); in ZSTD_BtGetAllMatches_selectMLS() 375 case 6: return ZSTD_BtGetAllMatches(zc, ip, iHighLimit, maxNbAttempts, 6, matches, minMatchLen); in ZSTD_BtGetAllMatches_selectMLS() 380 static U32 ZSTD_BtGetAllMatches_extDict(ZSTD_CCtx *zc, const BYTE *const ip, const BYTE *const iLimit, const U32 maxNbAttempts, const U32 mls, in ZSTD_BtGetAllMatches_extDict() argument 385 ZSTD_updateTree_extDict(zc, ip, iLimit, maxNbAttempts, ml in ZSTD_BtGetAllMatches_extDict() 365 ZSTD_BtGetAllMatches_selectMLS(ZSTD_CCtx *zc, const BYTE *ip, const BYTE *const iHighLimit, const U32 maxNbAttempts, const U32 matchLengthSearch, ZSTD_match_t *matches, const U32 minMatchLen) ZSTD_BtGetAllMatches_selectMLS() argument 389 ZSTD_BtGetAllMatches_selectMLS_extDict(ZSTD_CCtx *zc, const BYTE *ip, const BYTE *const iHighLimit, const U32 maxNbAttempts, const U32 matchLengthSearch, ZSTD_match_t *matches, const U32 minMatchLen) ZSTD_BtGetAllMatches_selectMLS_extDict() argument [all...] |
H A D | compress.c | 1735 static size_t ZSTD_BtFindBestMatch(ZSTD_CCtx *zc, const BYTE *const ip, const BYTE *const iLimit, size_t *offsetPtr, const U32 maxNbAttempts, const U32 mls) in ZSTD_BtFindBestMatch() argument 1739 ZSTD_updateTree(zc, ip, iLimit, maxNbAttempts, mls); in ZSTD_BtFindBestMatch() 1740 return ZSTD_insertBtAndFindBestMatch(zc, ip, iLimit, offsetPtr, maxNbAttempts, mls, 0); in ZSTD_BtFindBestMatch() 1744 const BYTE *ip, const BYTE *const iLimit, size_t *offsetPtr, const U32 maxNbAttempts, const U32 matchLengthSearch) in ZSTD_BtFindBestMatch_selectMLS() 1748 case 4: return ZSTD_BtFindBestMatch(zc, ip, iLimit, offsetPtr, maxNbAttempts, 4); in ZSTD_BtFindBestMatch_selectMLS() 1749 case 5: return ZSTD_BtFindBestMatch(zc, ip, iLimit, offsetPtr, maxNbAttempts, 5); in ZSTD_BtFindBestMatch_selectMLS() 1751 case 6: return ZSTD_BtFindBestMatch(zc, ip, iLimit, offsetPtr, maxNbAttempts, 6); in ZSTD_BtFindBestMatch_selectMLS() 1766 static size_t ZSTD_BtFindBestMatch_extDict(ZSTD_CCtx *zc, const BYTE *const ip, const BYTE *const iLimit, size_t *offsetPtr, const U32 maxNbAttempts, in ZSTD_BtFindBestMatch_extDict() argument 1771 ZSTD_updateTree_extDict(zc, ip, iLimit, maxNbAttempts, mls); in ZSTD_BtFindBestMatch_extDict() 1772 return ZSTD_insertBtAndFindBestMatch(zc, ip, iLimit, offsetPtr, maxNbAttempts, ml in ZSTD_BtFindBestMatch_extDict() 1743 ZSTD_BtFindBestMatch_selectMLS(ZSTD_CCtx *zc, const BYTE *ip, const BYTE *const iLimit, size_t *offsetPtr, const U32 maxNbAttempts, const U32 matchLengthSearch) ZSTD_BtFindBestMatch_selectMLS() argument 1775 ZSTD_BtFindBestMatch_selectMLS_extDict(ZSTD_CCtx *zc, const BYTE *ip, const BYTE *const iLimit, size_t *offsetPtr, const U32 maxNbAttempts, const U32 matchLengthSearch) ZSTD_BtFindBestMatch_selectMLS_extDict() argument 1819 ZSTD_HcFindBestMatch_generic(ZSTD_CCtx *zc, const BYTE *const ip, const BYTE *const iLimit, size_t *offsetPtr, const U32 maxNbAttempts, const U32 mls, const U32 extDict) ZSTD_HcFindBestMatch_generic() argument 1869 ZSTD_HcFindBestMatch_selectMLS(ZSTD_CCtx *zc, const BYTE *ip, const BYTE *const iLimit, size_t *offsetPtr, const U32 maxNbAttempts, const U32 matchLengthSearch) ZSTD_HcFindBestMatch_selectMLS() argument 1881 ZSTD_HcFindBestMatch_extDict_selectMLS(ZSTD_CCtx *zc, const BYTE *ip, const BYTE *const iLimit, size_t *offsetPtr, const U32 maxNbAttempts, const U32 matchLengthSearch) ZSTD_HcFindBestMatch_extDict_selectMLS() argument [all...] |