Home
last modified time | relevance | path

Searched refs:ZSTD_sizeof_CCtx (Results 1 – 7 of 7) sorted by relevance

/external/zstd/tests/
Dzstreamtest.c772 CHECK_Z(cctxSize1 = ZSTD_sizeof_CCtx(cctx)); in basicUnitTests()
777 CHECK_Z(cctxSize2 = ZSTD_sizeof_CCtx(cctx2)); in basicUnitTests()
787 CHECK(!(cctxSize1 == ZSTD_sizeof_CCtx(cctx3)), "Must be same CCtx size"); in basicUnitTests()
823 { size_t const cctxSize = ZSTD_sizeof_CCtx(cctx); in basicUnitTests()
876 { size_t const cctxSize = ZSTD_sizeof_CCtx(cctx); in basicUnitTests()
908 { size_t const cctxSize = ZSTD_sizeof_CCtx(cctx); in basicUnitTests()
Dfuzzer.c404 { size_t const cctxSize = ZSTD_sizeof_CCtx(cctx); in basicUnitTests()
1017 if (ZSTD_sizeof_CCtx(cctx) > (1U << 20)) goto _output_error; in basicUnitTests()
1253 …{ size_t const largeCCtxSize = ZSTD_sizeof_CCtx(largeCCtx); /* size of context must be measure… in basicUnitTests()
1257 { size_t const smallCCtxSize = ZSTD_sizeof_CCtx(smallCCtx); in basicUnitTests()
1271 if (ZSTD_sizeof_CCtx(largeCCtx) < largeCCtxSize) break; /* sized down */ in basicUnitTests()
Dparamgrill.c1672 bResult.cMem = ((size_t)1 << (comprParams->vals[wlog_ind])) + ZSTD_sizeof_CCtx(cctx); in BMK_benchMemInvertible()
/external/zstd/lib/
Dzstd.h1034 ZSTDLIB_API size_t ZSTD_sizeof_CCtx(const ZSTD_CCtx* cctx);
/external/zstd/programs/
Dbenchzstd.c553 benchResult.cMem = (1ULL << (comprParams->windowLog)) + ZSTD_sizeof_CCtx(cctx); in BMK_benchMemAdvancedNoAlloc()
/external/zstd/lib/compress/
Dzstdmt_compress.c401 totalCCtxSize += ZSTD_sizeof_CCtx(cctxPool->cctx[u]); in ZSTDMT_sizeof_CCtxPool()
Dzstd_compress.c187 size_t ZSTD_sizeof_CCtx(const ZSTD_CCtx* cctx) in ZSTD_sizeof_CCtx() function
199 return ZSTD_sizeof_CCtx(zcs); /* same object */ in ZSTD_sizeof_CStream()