Home
last modified time | relevance | path

Searched refs:ZSTD_DCtx_setParameter (Results 1 – 8 of 8) sorted by relevance

/external/zstd/tests/fuzz/
Dstream_decompress.c92 FUZZ_ZASSERT(ZSTD_DCtx_setParameter(dstream, ZSTD_d_stableOutBuffer, 1)); in LLVMFuzzerTestOneInput()
/external/zstd/examples/
Dstreaming_memory_usage.c104 CHECK_ZSTD( ZSTD_DCtx_setParameter(dctx, ZSTD_d_windowLogMax, wLog) ); in main()
/external/zstd/tests/
Dbigdict.c102 if (ZSTD_isError(ZSTD_DCtx_setParameter(dctx, ZSTD_d_windowLogMax, 31))) in main()
Dzstreamtest.c400 …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()
Dfuzzer.c606 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/
Dzstd.h574 ZSTDLIB_API size_t ZSTD_DCtx_setParameter(ZSTD_DCtx* dctx, ZSTD_dParameter param, int value);
/external/zstd/lib/decompress/
Dzstd_decompress.c1415 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/
Dfileio.c1894 CHECK( ZSTD_DCtx_setParameter(ress.dctx, ZSTD_d_forceIgnoreChecksum, !prefs->checksumFlag)); in FIO_createDResources()