Lines Matching refs:staticSize

10159     size_t staticSize;  member
13188 cctx->staticSize = workspaceSize; in ZSTD_initStaticCCtx()
13221 assert(cctx->staticSize == 0); in ZSTD_freeCCtxContent()
13232 RETURN_ERROR_IF(cctx->staticSize, memory_allocation, in ZSTD_freeCCtx()
13577 RETURN_ERROR_IF((value!=0) && cctx->staticSize, parameter_unsupported, in ZSTD_CCtx_setParameter()
13979 RETURN_ERROR_IF(cctx->staticSize, memory_allocation, in ZSTD_CCtx_loadDictionary_advanced()
14540 if (!zc->staticSize) ZSTD_cwksp_bump_oversized_duration(ws, 0); in ZSTD_resetCCtx_internal()
14543 { size_t const cctxSpace = zc->staticSize ? ZSTD_cwksp_alloc_size(sizeof(ZSTD_CCtx)) : 0; in ZSTD_resetCCtx_internal()
14572 RETURN_ERROR_IF(zc->staticSize, memory_allocation, "static cctx : no resize"); in ZSTD_resetCCtx_internal()
22750 size_t staticSize; member
24604 dctx->staticSize = 0; in ZSTD_initDCtx_internal()
24634 dctx->staticSize = workspaceSize; in ZSTD_initStaticDCtx()
24668 RETURN_ERROR_IF(dctx->staticSize, memory_allocation, "not compatible with static DCtx"); in ZSTD_freeDCtx()
25222 RETURN_ERROR_IF(dctx->staticSize, memory_allocation, in ZSTD_decompressMultiFrame()
26134 RETURN_ERROR_IF(zds->staticSize, memory_allocation, in ZSTD_decompressStream()
26151 RETURN_ERROR_IF(zds->staticSize, memory_allocation, in ZSTD_decompressStream()
26245 if (zds->staticSize) { /* static DCtx */ in ZSTD_decompressStream()
26246 DEBUGLOG(4, "staticSize : %u", (U32)zds->staticSize); in ZSTD_decompressStream()
26247 assert(zds->staticSize >= sizeof(ZSTD_DCtx)); /* controlled at init */ in ZSTD_decompressStream()
26249 bufferSize > zds->staticSize - sizeof(ZSTD_DCtx), in ZSTD_decompressStream()