Lines Matching refs:set_compressed

6467 typedef enum { set_basic, set_rle, set_compressed, set_repeat } symbolEncodingType_e;  enumerator
11119 symbolEncodingType_e hType = set_compressed; in ZSTD_compressLiterals()
11166 if (hType == set_compressed) { in ZSTD_compressLiterals()
11471 return set_compressed; in ZSTD_selectEncodingType()
11499 case set_compressed: { in ZSTD_buildCTable()
11858 hufMetadata->hType = set_compressed; in ZSTD_buildSuperBlockEntropy_literal()
11913 assert(set_basic < set_compressed && set_rle < set_compressed); in ZSTD_buildSuperBlockEntropy_sequences()
11914 …assert(!(LLtype < set_compressed && nextEntropy->litlength_repeatMode != FSE_repeat_none)); /* We … in ZSTD_buildSuperBlockEntropy_sequences()
11920 if (LLtype == set_compressed) in ZSTD_buildSuperBlockEntropy_sequences()
11938 …assert(!(Offtype < set_compressed && nextEntropy->offcode_repeatMode != FSE_repeat_none)); /* We d… in ZSTD_buildSuperBlockEntropy_sequences()
11944 if (Offtype == set_compressed) in ZSTD_buildSuperBlockEntropy_sequences()
11960 …assert(!(MLtype < set_compressed && nextEntropy->matchlength_repeatMode != FSE_repeat_none)); /* W… in ZSTD_buildSuperBlockEntropy_sequences()
11966 if (MLtype == set_compressed) in ZSTD_buildSuperBlockEntropy_sequences()
12054 assert(hufMetadata->hType == set_compressed || hufMetadata->hType == set_repeat); in ZSTD_compressSubBlock_literal()
12056 if (writeEntropy && hufMetadata->hType == set_compressed) { in ZSTD_compressSubBlock_literal()
12297 else if (hufMetadata->hType == set_compressed || hufMetadata->hType == set_repeat) { in ZSTD_estimateSubBlockSize_literal()
12327 } else if (type == set_compressed || type == set_repeat) { in ZSTD_estimateSubBlockSize_symbolType()
12387 if (fseMetadata->llType == set_compressed || fseMetadata->llType == set_rle) in ZSTD_needSequenceEntropyTables()
12389 if (fseMetadata->mlType == set_compressed || fseMetadata->mlType == set_rle) in ZSTD_needSequenceEntropyTables()
12391 if (fseMetadata->ofType == set_compressed || fseMetadata->ofType == set_rle) in ZSTD_needSequenceEntropyTables()
12429 int writeLitEntropy = entropyMetadata->hufMetadata.hType == set_compressed; in ZSTD_compressSubBlock_multi()
15128 assert(set_basic < set_compressed && set_rle < set_compressed); in ZSTD_compressSequences_internal()
15129 …assert(!(LLtype < set_compressed && nextEntropy->fse.litlength_repeatMode != FSE_repeat_none)); /*… in ZSTD_compressSequences_internal()
15139 if (LLtype == set_compressed) in ZSTD_compressSequences_internal()
15157 …assert(!(Offtype < set_compressed && nextEntropy->fse.offcode_repeatMode != FSE_repeat_none)); /* … in ZSTD_compressSequences_internal()
15167 if (Offtype == set_compressed) in ZSTD_compressSequences_internal()
15183 …assert(!(MLtype < set_compressed && nextEntropy->fse.matchlength_repeatMode != FSE_repeat_none)); … in ZSTD_compressSequences_internal()
15193 if (MLtype == set_compressed) in ZSTD_compressSequences_internal()
26486 case set_compressed: in ZSTD_decodeLiteralsBlock()
26559 if (litEncType==set_compressed) dctx->HUFptr = dctx->entropy.hufTable; in ZSTD_decodeLiteralsBlock()
26855 case set_compressed : in ZSTD_buildSeqTable()