Home
last modified time | relevance | path

Searched refs:ZSTD_dct_auto (Results 1 – 10 of 10) sorted by relevance

/freebsd/sys/contrib/zstd/lib/decompress/
H A Dzstd_ddict.c173 return ZSTD_createDDict_advanced(dict, dictSize, ZSTD_dlm_byCopy, ZSTD_dct_auto, allocator); in ZSTD_createDDict()
183 … return ZSTD_createDDict_advanced(dictBuffer, dictSize, ZSTD_dlm_byRef, ZSTD_dct_auto, allocator); in ZSTD_createDDict_byReference()
H A Dzstd_decompress.c1598 return ZSTD_DCtx_loadDictionary_advanced(dctx, dict, dictSize, ZSTD_dlm_byRef, ZSTD_dct_auto); in ZSTD_DCtx_loadDictionary_byReference()
1603 return ZSTD_DCtx_loadDictionary_advanced(dctx, dict, dictSize, ZSTD_dlm_byCopy, ZSTD_dct_auto); in ZSTD_DCtx_loadDictionary()
/freebsd/sys/contrib/openzfs/module/zstd/lib/decompress/
H A Dzstd_ddict.c174 return ZSTD_createDDict_advanced(dict, dictSize, ZSTD_dlm_byCopy, ZSTD_dct_auto, allocator); in ZSTD_createDDict()
184 … return ZSTD_createDDict_advanced(dictBuffer, dictSize, ZSTD_dlm_byRef, ZSTD_dct_auto, allocator); in ZSTD_createDDict_byReference()
H A Dzstd_decompress.c1311 return ZSTD_DCtx_loadDictionary_advanced(dctx, dict, dictSize, ZSTD_dlm_byRef, ZSTD_dct_auto); in ZSTD_DCtx_loadDictionary_byReference()
1316 return ZSTD_DCtx_loadDictionary_advanced(dctx, dict, dictSize, ZSTD_dlm_byCopy, ZSTD_dct_auto); in ZSTD_DCtx_loadDictionary()
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress.c922 cctx, dict, dictSize, ZSTD_dlm_byRef, ZSTD_dct_auto); in ZSTD_CCtx_loadDictionary_byReference()
928 cctx, dict, dictSize, ZSTD_dlm_byCopy, ZSTD_dct_auto); in ZSTD_CCtx_loadDictionary()
3063 if (dictContentType == ZSTD_dct_auto) { in ZSTD_compress_insertDictionary()
3150 dict, dictSize, ZSTD_dct_auto, ZSTD_dtlm_fast, in ZSTD_compressBegin_advanced()
3161 return ZSTD_compressBegin_internal(cctx, dict, dictSize, ZSTD_dct_auto, ZSTD_dtlm_fast, NULL, in ZSTD_compressBegin_usingDict()
3280 dict, dictSize, ZSTD_dct_auto, ZSTD_dtlm_fast, NULL, in ZSTD_compress_advanced_internal()
3452 ZSTD_dlm_byCopy, ZSTD_dct_auto, in ZSTD_createCDict()
3463 ZSTD_dlm_byRef, ZSTD_dct_auto, in ZSTD_createCDict_byReference()
3566 NULL, 0, ZSTD_dct_auto, ZSTD_dtlm_fast, in ZSTD_compressBegin_usingCDict_advanced()
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstd_compress.c1162 cctx, dict, dictSize, ZSTD_dlm_byRef, ZSTD_dct_auto); in ZSTD_CCtx_loadDictionary_byReference()
1168 cctx, dict, dictSize, ZSTD_dlm_byCopy, ZSTD_dct_auto); in ZSTD_CCtx_loadDictionary()
4470 if (dictContentType == ZSTD_dct_auto) { in ZSTD_compress_insertDictionary()
4563 dict, dictSize, ZSTD_dct_auto, ZSTD_dtlm_fast, in ZSTD_compressBegin_advanced()
4576 return ZSTD_compressBegin_internal(cctx, dict, dictSize, ZSTD_dct_auto, ZSTD_dtlm_fast, NULL, in ZSTD_compressBegin_usingDict()
4704 dict, dictSize, ZSTD_dct_auto, ZSTD_dtlm_fast, NULL, in ZSTD_compress_advanced_internal()
4948 ZSTD_dlm_byCopy, ZSTD_dct_auto, in ZSTD_createCDict()
4959 ZSTD_dlm_byRef, ZSTD_dct_auto, in ZSTD_createCDict_byReference()
5088 NULL, 0, ZSTD_dct_auto, ZSTD_dtlm_fast, in ZSTD_compressBegin_usingCDict_internal()
H A Dzstdmt_compress.c698 …size_t const initError = ZSTD_compressBegin_advanced_internal(cctx, NULL, 0, ZSTD_dct_auto, ZSTD_d… in ZSTDMT_compressionJob()
/freebsd/sys/contrib/openzfs/module/zstd/lib/
H A Dzstd.h1143ZSTD_dct_auto = 0, /* dictionary is "full" when starting with ZSTD_MAGIC_DICTIONARY, otherwi… enumerator
/freebsd/sys/contrib/zstd/lib/
H A Dzstd.h1237ZSTD_dct_auto = 0, /* dictionary is "full" when starting with ZSTD_MAGIC_DICTIONARY, otherwi… enumerator
/freebsd/sys/contrib/zstd/zlibWrapper/examples/
H A Dzwrapbench.c238 …ZSTD_createCDict_advanced(dictBuffer, dictBufferSize, ZSTD_dlm_byRef, ZSTD_dct_auto, zparams.cPara… in BMK_benchMem()