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

  /src/external/bsd/zstd/dist/lib/compress/
zstdmt_compress.c 653 size_t consumed; /* SHARED - set0 by mtctx, then modified by worker AND read by mtctx */
654 size_t cSize; /* SHARED - set0 by mtctx, then modified by worker AND read by mtctx, then set0 by mtctx */
655 ZSTD_pthread_mutex_t job_mutex; /* Thread-safe - used by mtctx and worker */
656 ZSTD_pthread_cond_t job_cond; /* Thread-safe - used by mtctx and worker */
657 ZSTDMT_CCtxPool* cctxPool; /* Thread-safe - used by mtctx and (all) workers */
658 ZSTDMT_bufferPool* bufPool; /* Thread-safe - used by mtctx and (all) workers */
659 ZSTDMT_seqPool* seqPool; /* Thread-safe - used by mtctx and (all) workers *
936 ZSTDMT_CCtx* mtctx; local
    [all...]
zstd_compress_internal.h 325 /* Multithreading: used to pass parameters to mtctx */
465 ZSTDMT_CCtx* mtctx; member in struct:ZSTD_CCtx_s
  /src/external/bsd/zstd/dist/tests/
zstreamtest.c 278 ZSTD_CCtx* mtctx = ZSTD_createCCtx(); local
287 if (!CNBuffer || !compressedBuffer || !decodedBuffer || !zc || !zd || !mtctx) {
293 CHECK_Z(ZSTD_CCtx_setParameter(mtctx, ZSTD_c_nbWorkers, 2));
1475 CHECK_Z( ZSTD_CCtx_getParameter(mtctx, ZSTD_c_jobSize, &jobSize));
1477 CHECK_Z( ZSTD_CCtx_getParameter(mtctx, ZSTD_c_jobSize, &jobSize));
1486 { size_t const compressResult = ZSTD_compressStream2(mtctx, &outBuff, &inBuff, ZSTD_e_end);
2459 ZSTD_freeCCtx(mtctx);
fuzzer.c 2116 { ZSTD_CCtx* const mtctx = ZSTD_createCCtx(); local
2117 if (mtctx==NULL) {
2118 DISPLAY("mtctx : not enough memory, aborting \n");
2122 CHECK_Z( ZSTD_CCtx_setParameter(mtctx, ZSTD_c_nbWorkers, 2) );
2123 CHECK_Z( ZSTD_CCtx_setParameter(mtctx, ZSTD_c_compressionLevel, 1) );
2127 CHECK_VAR(cSize, ZSTD_compress2(mtctx,
2153 CHECK_Z( ZSTD_CCtx_setParameter(mtctx, ZSTD_c_checksumFlag, 1) );
2154 CHECK_Z( ZSTD_CCtx_setParameter(mtctx, ZSTD_c_contentSizeFlag, 1) );
2155 CHECK_Z( ZSTD_CCtx_setParameter(mtctx, ZSTD_c_overlapLog, 3) );
2156 CHECK_VAR(cSize, ZSTD_compress2(mtctx,
    [all...]

Completed in 36 milliseconds