Searched refs:hufMetadata (Results 1 – 3 of 3) sorted by relevance
44 const ZSTD_hufCTablesMetadata_t* hufMetadata, in ZSTD_compressSubBlock_literal() argument55 SymbolEncodingType_e hType = writeEntropy ? hufMetadata->hType : set_repeat; in ZSTD_compressSubBlock_literal()61 if (litSize == 0 || hufMetadata->hType == set_basic) { in ZSTD_compressSubBlock_literal()64 } else if (hufMetadata->hType == set_rle) { in ZSTD_compressSubBlock_literal()70 assert(hufMetadata->hType == set_compressed || hufMetadata->hType == set_repeat); in ZSTD_compressSubBlock_literal()72 if (writeEntropy && hufMetadata->hType == set_compressed) { in ZSTD_compressSubBlock_literal()73 ZSTD_memcpy(op, hufMetadata->hufDesBuffer, hufMetadata->hufDesSize); in ZSTD_compressSubBlock_literal()74 op += hufMetadata->hufDesSize; in ZSTD_compressSubBlock_literal()75 cLitSize += hufMetadata->hufDesSize; in ZSTD_compressSubBlock_literal()76 DEBUGLOG(5, "ZSTD_compressSubBlock_literal (hSize=%zu)", hufMetadata->hufDesSize); in ZSTD_compressSubBlock_literal()[all …]
3550 ZSTD_hufCTablesMetadata_t* hufMetadata, in ZSTD_buildBlockEntropyStats_literals() argument3572 hufMetadata->hType = set_basic; in ZSTD_buildBlockEntropyStats_literals()3583 hufMetadata->hType = set_basic; in ZSTD_buildBlockEntropyStats_literals()3596 hufMetadata->hType = set_rle; in ZSTD_buildBlockEntropyStats_literals()3602 hufMetadata->hType = set_basic; in ZSTD_buildBlockEntropyStats_literals()3626 hufMetadata->hufDesBuffer, sizeof(hufMetadata->hufDesBuffer), in ZSTD_buildBlockEntropyStats_literals()3636 hufMetadata->hType = set_repeat; in ZSTD_buildBlockEntropyStats_literals()3642 hufMetadata->hType = set_basic; in ZSTD_buildBlockEntropyStats_literals()3646 hufMetadata->hType = set_compressed; in ZSTD_buildBlockEntropyStats_literals()3724 entropyMetadata->hufMetadata.hufDesSize = in ZSTD_buildBlockEntropyStats()[all …]
173 ZSTD_hufCTablesMetadata_t hufMetadata; member