Lines Matching refs:cctx
26 ZSTD_CCtx *cctx = NULL; variable
63 ZSTD_CCtx_reset(cctx, ZSTD_reset_session_only); in compress()
64 FUZZ_setRandomParameters(cctx, srcSize, producer); in compress()
79 ZSTD_compressStream2(cctx, &out, &in, ZSTD_e_flush); in compress()
87 ZSTD_compressStream2(cctx, &out, &in, ZSTD_e_end); in compress()
91 ZSTD_CCtx_reset(cctx, ZSTD_reset_session_only); in compress()
94 FUZZ_setRandomParameters(cctx, remaining, producer); in compress()
103 … size_t const ret = ZSTD_compressStream2(cctx, &nullOut, &nullIn, ZSTD_e_continue); in compress()
109 ZSTD_compressStream2(cctx, &out, &in, ZSTD_e_continue); in compress()
122 size_t const ret = ZSTD_compressStream2(cctx, &out, &in, ZSTD_e_end); in compress()
153 if (!cctx) { in LLVMFuzzerTestOneInput()
154 cctx = ZSTD_createCCtx(); in LLVMFuzzerTestOneInput()
155 FUZZ_ASSERT(cctx); in LLVMFuzzerTestOneInput()
173 ZSTD_freeCCtx(cctx); cctx = NULL; in LLVMFuzzerTestOneInput()