Searched refs:ZSTD_DCtx_setParameter (Results 1 – 8 of 8) sorted by relevance
/external/zstd/examples/ |
D | streaming_memory_usage.c | 104 CHECK_ZSTD( ZSTD_DCtx_setParameter(dctx, ZSTD_d_windowLogMax, wLog) ); in main()
|
/external/zstd/tests/fuzz/ |
D | stream_decompress.c | 92 FUZZ_ZASSERT(ZSTD_DCtx_setParameter(dstream, ZSTD_d_stableOutBuffer, 1)); in LLVMFuzzerTestOneInput()
|
/external/zstd/tests/ |
D | bigdict.c | 102 if (ZSTD_isError(ZSTD_DCtx_setParameter(dctx, ZSTD_d_windowLogMax, 31))) in main()
|
D | zstreamtest.c | 400 …CHECK_Z( ZSTD_DCtx_setParameter(zd, ZSTD_d_windowLogMax, ZSTD_WINDOWLOG_LIMIT_DEFAULT+1) ); /* la… in basicUnitTests() 651 CHECK_Z(ZSTD_DCtx_setParameter(dctx, ZSTD_d_stableOutBuffer, 1)); in basicUnitTests() 677 CHECK_Z(ZSTD_DCtx_setParameter(dctx, ZSTD_d_stableOutBuffer, 1)); in basicUnitTests() 712 CHECK_Z(ZSTD_DCtx_setParameter(dctx, ZSTD_d_stableOutBuffer, 1)); in basicUnitTests() 725 CHECK_Z(ZSTD_DCtx_setParameter(dctx, ZSTD_d_stableOutBuffer, 1)); in basicUnitTests() 741 CHECK_Z(ZSTD_DCtx_setParameter(dctx, ZSTD_d_stableOutBuffer, 0)); in basicUnitTests() 975 CHECK_Z( ZSTD_DCtx_setParameter(zd, ZSTD_d_windowLogMax, 10) ); /* too small limit */ in basicUnitTests() 1405 CHECK_Z(ZSTD_DCtx_setParameter(zd, ZSTD_d_windowLogMax, kMaxWindowLog)); in basicUnitTests()
|
D | fuzzer.c | 606 CHECK_Z(ZSTD_DCtx_setParameter(dctx, ZSTD_d_forceIgnoreChecksum, ZSTD_d_ignoreChecksum)); in basicUnitTests() 1499 CHECK( ZSTD_DCtx_setParameter(dctx, ZSTD_d_windowLogMax, 10) ); in basicUnitTests() 2491 { size_t const sr = ZSTD_DCtx_setParameter(dctx, (ZSTD_dParameter)999999, 0); in basicUnitTests() 2500 { size_t const sr = ZSTD_DCtx_setParameter(dctx, ZSTD_d_windowLogMax, 9999); in basicUnitTests() 2503 { size_t const sr = ZSTD_DCtx_setParameter(dctx, ZSTD_d_format, (ZSTD_format_e)888); in basicUnitTests() 2538 CHECK( ZSTD_DCtx_setParameter(dctx, ZSTD_d_format, ZSTD_f_zstd1_magicless) ); in basicUnitTests() 2572 CHECK( ZSTD_DCtx_setParameter(dctx, ZSTD_d_format, ZSTD_f_zstd1_magicless) ); in basicUnitTests() 2609 CHECK(ZSTD_DCtx_setParameter(dctx, dParam, value2)); in basicUnitTests()
|
/external/zstd/lib/ |
D | zstd.h | 574 ZSTDLIB_API size_t ZSTD_DCtx_setParameter(ZSTD_DCtx* dctx, ZSTD_dParameter param, int value);
|
/external/zstd/lib/decompress/ |
D | zstd_decompress.c | 1415 return ZSTD_DCtx_setParameter(dctx, ZSTD_d_format, (int)format); in ZSTD_DCtx_setFormat() 1481 size_t ZSTD_DCtx_setParameter(ZSTD_DCtx* dctx, ZSTD_dParameter dParam, int value) in ZSTD_DCtx_setParameter() function
|
/external/zstd/programs/ |
D | fileio.c | 1894 CHECK( ZSTD_DCtx_setParameter(ress.dctx, ZSTD_d_forceIgnoreChecksum, !prefs->checksumFlag)); in FIO_createDResources()
|