Home
last modified time | relevance | path

Searched refs:ZSTD_fast (Results 1 – 11 of 11) sorted by relevance

/external/zstd/tests/
Dlongmatch.c55 params.cParams.strategy = ZSTD_fast; in main()
Dparamgrill.c322 if (params.vals[strt_ind] == ZSTD_fast) in sanitizeParams()
326 if ( (params.vals[strt_ind] < ZSTD_btopt) && (params.vals[strt_ind] != ZSTD_fast) ) in sanitizeParams()
1367 if( !((varArray[i] == clog_ind && strat == ZSTD_fast) in sanitizeVarArray()
1368 || (varArray[i] == slog_ind && strat == ZSTD_fast) in sanitizeVarArray()
1370 || (varArray[i] == tlen_ind && strat < ZSTD_btopt && strat != ZSTD_fast))) { in sanitizeVarArray()
1809 g_level_constraint[1].strategy_max = ZSTD_fast; in BMK_init_level_constraints()
/external/zstd/lib/compress/
Dzstd_compress.c1274 … size_t const chainSize = (cParams->strategy == ZSTD_fast) ? 0 : ((size_t)1 << cParams->chainLog); in ZSTD_sizeof_matchState()
1533 … size_t const chainSize = (cParams->strategy == ZSTD_fast) ? 0 : ((size_t)1 << cParams->chainLog); in ZSTD_reset_matchState()
1889 …{ size_t const chainSize = (cdict_cParams->strategy == ZSTD_fast) ? 0 : ((size_t)1 << cdict_cPar… in ZSTD_resetCCtx_byCopyingCDict()
1981 …{ size_t const chainSize = (srcCCtx->appliedParams.cParams.strategy == ZSTD_fast) ? 0 : ((size_t… in ZSTD_copyCCtx_internal()
2094 if (params->cParams.strategy != ZSTD_fast) { in ZSTD_reduceIndex()
2418 ZSTD_STATIC_ASSERT((unsigned)ZSTD_fast == 1); in ZSTD_selectBlockCompressor()
3111 case ZSTD_fast: in ZSTD_loadDictionaryContent()
4974 { 19, 12, 13, 1, 6, 1, ZSTD_fast }, /* base for negative levels */
4975 { 19, 13, 14, 1, 7, 0, ZSTD_fast }, /* level 1 */
4976 { 20, 15, 16, 1, 6, 0, ZSTD_fast }, /* level 2 */
[all …]
Dzstd_ldm.c192 case ZSTD_fast: in ZSTD_ldm_fillFastTables()
Dzstd_compress_internal.h476 … return (cctxParams->cParams.strategy == ZSTD_fast) && (cctxParams->cParams.targetLength > 0); in ZSTD_disableLiteralsCompression()
Dzstdmt_compress.c1153 case ZSTD_fast: in ZSTDMT_overlapLog_default()
/external/zstd/contrib/linux-kernel/
Dzstd_compress_module.c46 ZSTD_STATIC_ASSERT((int)ZSTD_fast == (int)zstd_fast); in zstd_check_structs()
/external/zstd/lib/
Dzstd.h256 typedef enum { ZSTD_fast=1, enumerator
1088 #define ZSTD_STRATEGY_MIN ZSTD_fast
/external/zstd/programs/
Dzstd.1.md469 This option is ignored for the ZSTD_fast strategy.
/external/zstd/
DCHANGELOG326 API exp : changed : strongest strategy renamed ZSTD_btultra, fastest strategy ZSTD_fast set to 1
/external/zstd/lib/legacy/
Dzstd_v04.c255 typedef enum { ZSTD_fast, ZSTD_greedy, ZSTD_lazy, ZSTD_lazy2, ZSTD_btlazy2 } ZSTD_strategy; enumerator