Lines Matching refs:cctx
29 static ZSTD_CCtx *cctx = NULL; variable
197 ZSTD_CCtx_reset(cctx, ZSTD_reset_session_and_parameters); in roundTripTest()
198 ZSTD_CCtx_setParameter(cctx, ZSTD_c_nbWorkers, 0); in roundTripTest()
199 ZSTD_CCtx_setParameter(cctx, ZSTD_c_compressionLevel, cLevel); in roundTripTest()
200 ZSTD_CCtx_setParameter(cctx, ZSTD_c_windowLog, wLog); in roundTripTest()
201 ZSTD_CCtx_setParameter(cctx, ZSTD_c_minMatch, ZSTD_MINMATCH_MIN); in roundTripTest()
202 ZSTD_CCtx_setParameter(cctx, ZSTD_c_validateSequences, 1); in roundTripTest()
204 ZSTD_CCtx_setParameter(cctx, ZSTD_c_blockDelimiters, ZSTD_sf_noBlockDelimiters); in roundTripTest()
206 FUZZ_ZASSERT(ZSTD_CCtx_loadDictionary(cctx, dict, dictSize)); in roundTripTest()
210 cSize = ZSTD_compressSequences(cctx, compressed, compressedCapacity, in roundTripTest()
270 if (!cctx) { in LLVMFuzzerTestOneInput()
271 cctx = ZSTD_createCCtx(); in LLVMFuzzerTestOneInput()
272 FUZZ_ASSERT(cctx); in LLVMFuzzerTestOneInput()
296 ZSTD_freeCCtx(cctx); cctx = NULL; in LLVMFuzzerTestOneInput()