Lines Matching refs:cctx
25 static ZSTD_CCtx *cctx = NULL; variable
40 cSize = ZSTD_compress_usingDict(cctx, in roundTripTest()
47 FUZZ_setRandomParameters(cctx, srcSize, producer); in roundTripTest()
49 FUZZ_ZASSERT(ZSTD_CCtx_setParameter(cctx, ZSTD_c_checksumFlag, 0)); in roundTripTest()
52 cctx, dict.buff, dict.size, in roundTripTest()
56 cctx, dict.buff, dict.size, in roundTripTest()
59 cSize = ZSTD_compress2(cctx, compressed, compressedCapacity, src, srcSize); in roundTripTest()
97 if (!cctx) { in LLVMFuzzerTestOneInput()
98 cctx = ZSTD_createCCtx(); in LLVMFuzzerTestOneInput()
99 FUZZ_ASSERT(cctx); in LLVMFuzzerTestOneInput()
117 ZSTD_freeCCtx(cctx); cctx = NULL; in LLVMFuzzerTestOneInput()