HomeSort by: relevance | last modified time | path
    Searched defs:cctx1 (Results 1 - 2 of 2) sorted by relevancy

  /src/external/bsd/zstd/dist/tests/
zstreamtest.c 899 { ZSTD_CCtx* const cctx1 = ZSTD_createCCtx(); local
902 assert(cctx1 != NULL);
904 cSize3 = ZSTD_compress_advanced(cctx1, compressedBuffer, compressedBufferSize, CNBuffer, CNBufferSize, NULL, 0, params);
907 CHECK(!(cctxSize1 == ZSTD_sizeof_CCtx(cctx1)), "Must be same CCtx size");
908 ZSTD_freeCCtx(cctx1);
fuzzer.c 418 ZSTD_CCtx* cctx1 = ZSTD_createCCtx(); local
423 threadPoolTests_compressionJob_payload p1 = {cctx1, pool, CNBuffer, CNBuffSize,
428 ZSTD_CCtx_setParameter(cctx1, ZSTD_c_nbWorkers, 2);
430 ZSTD_CCtx_refThreadPool(cctx1, pool);
443 ZSTD_freeCCtx(cctx1);

Completed in 66 milliseconds