Home
last modified time | relevance | path

Searched refs:zcss_init (Results 1 – 2 of 2) sorted by relevance

/linux/lib/zstd/compress/
H A Dzstd_compress.c114 ZSTD_STATIC_ASSERT(zcss_init==0); in ZSTD_createCCtx_advanced()
693 if (cctx->streamStage != zcss_init) { in ZSTD_CCtx_setParameter()
1118 RETURN_ERROR_IF(cctx->streamStage != zcss_init, stage_wrong, in ZSTD_CCtx_setParametersUsingCCtxParams()
1169 RETURN_ERROR_IF(cctx->streamStage != zcss_init, stage_wrong, in ZSTD_CCtx_setPledgedSrcSize()
1226 RETURN_ERROR_IF(cctx->streamStage != zcss_init, stage_wrong, in ZSTD_CCtx_loadDictionary_advanced()
1266 RETURN_ERROR_IF(cctx->streamStage != zcss_init, stage_wrong, in ZSTD_CCtx_refCDict()
1276 RETURN_ERROR_IF(cctx->streamStage != zcss_init, stage_wrong, in ZSTD_CCtx_refThreadPool()
1290 RETURN_ERROR_IF(cctx->streamStage != zcss_init, stage_wrong, in ZSTD_CCtx_refPrefix_advanced()
1307 cctx->streamStage = zcss_init; in ZSTD_CCtx_reset()
1312 RETURN_ERROR_IF(cctx->streamStage != zcss_init, stage_wrong, in ZSTD_CCtx_reset()
[all …]
H A Dzstd_compress_internal.h45 typedef enum { zcss_init=0, zcss_load, zcss_flush } ZSTD_cStreamStage; enumerator