Searched refs:ZSTD_match_t (Results 1 - 6 of 6) sorted by relevance
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | zstd_internal.h | 172 } ZSTD_match_t; typedef 200 ZSTD_match_t *matchTable;
|
H A D | zstd_opt.h | 236 ZSTD_match_t *matches, const U32 minMatchLen) in ZSTD_insertBtAndGetAllMatches() 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() 367 ZSTD_match_t *matches, const U32 minMatchLen) in ZSTD_BtGetAllMatches_selectMLS() 381 ZSTD_match_t *matches, const U32 minMatchLen) in ZSTD_BtGetAllMatches_extDict() 391 ZSTD_match_t *matches, const U32 minMatchLen) in ZSTD_BtGetAllMatches_selectMLS_extDict() 424 ZSTD_match_t *matches = seqStorePtr->matchTable; in ZSTD_compressBlock_opt_generic() 721 ZSTD_match_t *matches = seqStorePtr->matchTable; in ZSTD_compressBlock_opt_extDict_generic()
|
H A D | compress.c | 102 ((MaxML + 1) + (MaxLL + 1) + (MaxOff + 1) + (1 << Litbits)) * sizeof(U32) + (ZSTD_OPT_NUM + 1) * (sizeof(ZSTD_match_t) + sizeof(ZSTD_optimal_t)); in ZSTD_CCtxWorkspaceBound() 266 (ZSTD_OPT_NUM + 1) * (sizeof(ZSTD_match_t) + sizeof(ZSTD_optimal_t)); in ZSTD_resetCCtx_advanced() 312 zc->seqStore.matchTable = (ZSTD_match_t *)ptr; in ZSTD_resetCCtx_advanced()
|
/kernel/linux/linux-6.6/lib/zstd/compress/ |
H A D | zstd_opt.c | 557 ZSTD_match_t* matches, /* store result (found matches) in this table (presumed large enough) */ in ZSTD_insertBtAndGetAllMatches() 786 ZSTD_match_t*, 796 ZSTD_match_t* matches, in ZSTD_btGetAllMatches_internal() 819 ZSTD_match_t* matches, \ 959 static void ZSTD_optLdm_maybeAddMatch(ZSTD_match_t* matches, U32* nbMatches, in ZSTD_optLdm_maybeAddMatch() 963 /* Note: ZSTD_match_t actually contains offCode and matchLength (before subtracting MINMATCH) */ in ZSTD_optLdm_maybeAddMatch() 988 ZSTD_match_t* matches, U32* nbMatches, in ZSTD_optLdm_processMatchCandidate() 1061 ZSTD_match_t* const matches = optStatePtr->matchTable; in ZSTD_compressBlock_opt_generic()
|
H A D | zstd_compress_internal.h | 128 } ZSTD_match_t; typedef 163 ZSTD_match_t* matchTable; /* list of found matches, of size ZSTD_OPT_NUM+1 */
|
H A D | zstd_compress.c | 1370 + ZSTD_cwksp_aligned_alloc_size((ZSTD_OPT_NUM+1) * sizeof(ZSTD_match_t)) in ZSTD_sizeof_matchState() 1695 ms->opt.matchTable = (ZSTD_match_t*)ZSTD_cwksp_reserve_aligned(ws, (ZSTD_OPT_NUM+1) * sizeof(ZSTD_match_t)); in ZSTD_reset_matchState()
|
Completed in 25 milliseconds