Searched refs:staticSize (Results 1 – 5 of 5) sorted by relevance
| /f-stack/freebsd/contrib/zstd/lib/decompress/ |
| H A D | zstd_decompress.c | 108 dctx->staticSize = 0; in ZSTD_initDCtx_internal() 138 dctx->staticSize = workspaceSize; in ZSTD_initStaticDCtx() 172 RETURN_ERROR_IF(dctx->staticSize, memory_allocation, "not compatible with static DCtx"); in ZSTD_freeDCtx() 729 RETURN_ERROR_IF(dctx->staticSize, memory_allocation, in ZSTD_decompressMultiFrame() 1675 RETURN_ERROR_IF(zds->staticSize, memory_allocation, in ZSTD_decompressStream() 1692 RETURN_ERROR_IF(zds->staticSize, memory_allocation, in ZSTD_decompressStream() 1786 if (zds->staticSize) { /* static DCtx */ in ZSTD_decompressStream() 1787 DEBUGLOG(4, "staticSize : %u", (U32)zds->staticSize); in ZSTD_decompressStream() 1788 assert(zds->staticSize >= sizeof(ZSTD_DCtx)); /* controlled at init */ in ZSTD_decompressStream() 1790 bufferSize > zds->staticSize - sizeof(ZSTD_DCtx), in ZSTD_decompressStream()
|
| H A D | zstd_decompress_internal.h | 130 size_t staticSize; member
|
| /f-stack/freebsd/contrib/zstd/lib/compress/ |
| H A D | zstd_compress.c | 119 cctx->staticSize = workspaceSize; in ZSTD_initStaticCCtx() 152 assert(cctx->staticSize == 0); in ZSTD_freeCCtxContent() 163 RETURN_ERROR_IF(cctx->staticSize, memory_allocation, in ZSTD_freeCCtx() 550 RETURN_ERROR_IF((value!=0) && cctx->staticSize, parameter_unsupported, in ZSTD_CCtx_setParameter() 1011 RETURN_ERROR_IF(cctx->staticSize, memory_allocation, in ZSTD_CCtx_loadDictionary_advanced() 1639 ¶ms.cParams, ¶ms.ldmParams, zc->staticSize != 0, in ZSTD_resetCCtx_internal() 1643 if (!zc->staticSize) ZSTD_cwksp_bump_oversized_duration(ws, 0); in ZSTD_resetCCtx_internal() 1658 RETURN_ERROR_IF(zc->staticSize, memory_allocation, "static cctx : no resize"); in ZSTD_resetCCtx_internal()
|
| H A D | zstd_compress_internal.h | 282 size_t staticSize; member
|
| /f-stack/freebsd/contrib/openzfs/module/zstd/lib/ |
| H A D | zstd.c | 10161 size_t staticSize; member 13190 cctx->staticSize = workspaceSize; in ZSTD_initStaticCCtx() 13223 assert(cctx->staticSize == 0); in ZSTD_freeCCtxContent() 13234 RETURN_ERROR_IF(cctx->staticSize, memory_allocation, in ZSTD_freeCCtx() 13981 RETURN_ERROR_IF(cctx->staticSize, memory_allocation, in ZSTD_CCtx_loadDictionary_advanced() 22752 size_t staticSize; member 24606 dctx->staticSize = 0; in ZSTD_initDCtx_internal() 24636 dctx->staticSize = workspaceSize; in ZSTD_initStaticDCtx() 25224 RETURN_ERROR_IF(dctx->staticSize, memory_allocation, in ZSTD_decompressMultiFrame() 26136 RETURN_ERROR_IF(zds->staticSize, memory_allocation, in ZSTD_decompressStream() [all …]
|