Lines Matching refs:cctx
26 static ZSTD_CCtx *cctx = NULL; variable
38 FUZZ_setRandomParameters(cctx, srcSize, producer); in roundTripTest()
39 cSize = ZSTD_compress2(cctx, compressed, compressedCapacity, src, srcSize); in roundTripTest()
40 FUZZ_ZASSERT(ZSTD_CCtx_getParameter(cctx, ZSTD_c_targetCBlockSize, &targetCBlockSize)); in roundTripTest()
45 cctx, compressed, compressedCapacity, src, srcSize, cLevel); in roundTripTest()
57 FUZZ_ZASSERT(ZSTD_CCtx_setParameter(cctx, ZSTD_c_targetCBlockSize, 0)); in roundTripTest()
58 normalCSize = ZSTD_compress2(cctx, compressed, compressedCapacity, src, srcSize); in roundTripTest()
94 if (!cctx) { in LLVMFuzzerTestOneInput()
95 cctx = ZSTD_createCCtx(); in LLVMFuzzerTestOneInput()
96 FUZZ_ASSERT(cctx); in LLVMFuzzerTestOneInput()
114 ZSTD_freeCCtx(cctx); cctx = NULL; in LLVMFuzzerTestOneInput()