Searched refs:staticSize (Results 1 - 4 of 4) sorted by relevance

/linux-master/lib/zstd/decompress/
H A Dzstd_decompress_internal.h154 size_t staticSize; member in struct:ZSTD_DCtx_s
H A Dzstd_decompress.c244 dctx->staticSize = 0;
274 dctx->staticSize = workspaceSize;
312 RETURN_ERROR_IF(dctx->staticSize, memory_allocation, "not compatible with static DCtx");
1621 assert(!dctx->staticSize); /* Impossible: ddictSet cannot have been allocated if static dctx */
1741 if (dctx->staticSize != 0) {
2006 if (zds->staticSize) { /* static DCtx */
2007 DEBUGLOG(4, "staticSize : %u", (U32)zds->staticSize);
2008 assert(zds->staticSize >= sizeof(ZSTD_DCtx)); /* controlled at init */
2010 bufferSize > zds->staticSize
[all...]
/linux-master/lib/zstd/compress/
H A Dzstd_compress.c131 cctx->staticSize = workspaceSize;
164 assert(cctx->staticSize == 0);
172 RETURN_ERROR_IF(cctx->staticSize, memory_allocation,
634 RETURN_ERROR_IF((value!=0) && cctx->staticSize, parameter_unsupported,
1076 RETURN_ERROR_IF(cctx->staticSize, memory_allocation,
1797 &params->cParams, &params->ldmParams, zc->staticSize != 0, params->useRowMatchFinder,
1803 if (!zc->staticSize) ZSTD_cwksp_bump_oversized_duration(ws, 0);
1817 RETURN_ERROR_IF(zc->staticSize, memory_allocation, "static cctx : no resize");
H A Dzstd_compress_internal.h376 size_t staticSize; member in struct:ZSTD_CCtx_s

Completed in 505 milliseconds