HomeSort by: relevance | last modified time | path
    Searched refs:ZSTD_sizeof_CCtx (Results 1 - 7 of 7) sorted by relevancy

  /src/external/bsd/zstd/dist/tests/
zstreamtest.c 889 CHECK_Z(cctxSize1 = ZSTD_sizeof_CCtx(cctx));
896 CHECK_Z(cctxSize2 = ZSTD_sizeof_CCtx(cctx2));
908 CHECK(!(cctxSize1 == ZSTD_sizeof_CCtx(cctx1)), "Must be same CCtx size");
943 { size_t const cctxSize = ZSTD_sizeof_CCtx(cctx);
1038 { size_t const cctxSize = ZSTD_sizeof_CCtx(cctx);
1073 { size_t const cctxSize = ZSTD_sizeof_CCtx(cctx);
fuzzer.c 724 { size_t const cctxSize = ZSTD_sizeof_CCtx(cctx);
1571 if (ZSTD_sizeof_CCtx(cctx) > (1U << 20)) goto _output_error;
1934 { size_t const largeCCtxSize = ZSTD_sizeof_CCtx(largeCCtx); /* size of context must be measured after compression */
1938 { size_t const smallCCtxSize = ZSTD_sizeof_CCtx(smallCCtx);
1952 if (ZSTD_sizeof_CCtx(largeCCtx) < largeCCtxSize) break; /* sized down */
paramgrill.c 1671 bResult.cMem = ((size_t)1 << (comprParams->vals[wlog_ind])) + ZSTD_sizeof_CCtx(cctx);
  /src/external/bsd/zstd/dist/lib/
zstd.h 1206 ZSTDLIB_API size_t ZSTD_sizeof_CCtx(const ZSTD_CCtx* cctx);
  /src/external/bsd/zstd/dist/programs/
benchzstd.c 775 (1ULL << (comprParams->windowLog)) + ZSTD_sizeof_CCtx(cctx);
  /src/external/bsd/zstd/dist/lib/compress/
zstdmt_compress.c 427 totalCCtxSize += ZSTD_sizeof_CCtx(cctxPool->cctxs[u]);
zstd_compress.c 206 size_t ZSTD_sizeof_CCtx(const ZSTD_CCtx* cctx)
218 return ZSTD_sizeof_CCtx(zcs); /* same object */

Completed in 72 milliseconds