Home
last modified time | relevance | path

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

/freebsd-12.1/sys/contrib/zstd/lib/compress/
H A Dzstd_compress.c69 ZSTD_STATIC_ASSERT(zcss_init==0); in ZSTD_createCCtx_advanced()
279 if (cctx->streamStage != zcss_init) { in ZSTD_CCtx_setParameter()
490 if (cctx->streamStage != zcss_init) return ERROR(stage_wrong); in ZSTD_CCtx_setParametersUsingCCtxParams()
500 if (cctx->streamStage != zcss_init) return ERROR(stage_wrong); in ZSTD_CCtx_setPledgedSrcSize()
509 if (cctx->streamStage != zcss_init) return ERROR(stage_wrong); in ZSTD_CCtx_loadDictionary_advanced()
546 if (cctx->streamStage != zcss_init) return ERROR(stage_wrong); in ZSTD_CCtx_refCDict()
560 if (cctx->streamStage != zcss_init) return ERROR(stage_wrong); in ZSTD_CCtx_refPrefix_advanced()
570 cctx->streamStage = zcss_init; in ZSTD_startNewCompression()
3060 case zcss_init: in ZSTD_compressStream_generic()
3200 if (cctx->streamStage == zcss_init) { in ZSTD_compress_generic()
H A Dzstd_compress_internal.h47 typedef enum { zcss_init=0, zcss_load, zcss_flush } ZSTD_cStreamStage; enumerator