Home
last modified time | relevance | path

Searched refs:huffLog (Results 1 – 4 of 4) sorted by relevance

/dragonfly/contrib/zstd/lib/compress/
H A Dhuf_compress.c121 for (n=1; n<huffLog+1; n++) in HUF_writeCTable()
122 bitsToWeight[n] = (BYTE)(huffLog + 1 - n); in HUF_writeCTable()
766 if (!huffLog) huffLog = HUF_TABLELOG_DEFAULT; in HUF_compress_internal()
795 huffLog = HUF_optimalTableLog(huffLog, srcSize, maxSymbolValue); in HUF_compress_internal()
800 huffLog = (U32)maxBits; in HUF_compress_internal()
833 unsigned maxSymbolValue, unsigned huffLog, in HUF_compress1X_wksp() argument
844 unsigned maxSymbolValue, unsigned huffLog, in HUF_compress1X_repeat() argument
859 unsigned maxSymbolValue, unsigned huffLog, in HUF_compress4X_wksp() argument
873 unsigned maxSymbolValue, unsigned huffLog, in HUF_compress4X_repeat() argument
896 unsigned maxSymbolValue, unsigned huffLog) in HUF_compress1X() argument
[all …]
H A Dzstd_compress_superblock.c76 unsigned huffLog = HUF_TABLELOG_DEFAULT; in ZSTD_buildSuperBlockEntropy_literal() local
122 huffLog = HUF_optimalTableLog(huffLog, srcSize, maxSymbolValue); in ZSTD_buildSuperBlockEntropy_literal()
124 maxSymbolValue, huffLog, in ZSTD_buildSuperBlockEntropy_literal()
127 huffLog = (U32)maxBits; in ZSTD_buildSuperBlockEntropy_literal()
133 (HUF_CElt*)nextHuf->CTable, maxSymbolValue, huffLog); in ZSTD_buildSuperBlockEntropy_literal()
/dragonfly/contrib/zstd/lib/dictBuilder/
H A Dzdict.c726 U32 u, huffLog = 11, Offlog = OffFSELog, mlLog = MLFSELog, llLog = LLFSELog, total; in ZDICT_analyzeEntropy() local
765 { size_t maxNbBits = HUF_buildCTable (hufTable, countLit, 255, huffLog); in ZDICT_analyzeEntropy()
774 maxNbBits = HUF_buildCTable (hufTable, countLit, 255, huffLog); in ZDICT_analyzeEntropy()
777 huffLog = (U32)maxNbBits; in ZDICT_analyzeEntropy()
815 { size_t const hhSize = HUF_writeCTable(dstPtr, maxDstSize, hufTable, 255, huffLog); in ZDICT_analyzeEntropy()
/dragonfly/contrib/zstd/lib/common/
H A Dhuf.h194 … (void* dst, size_t maxDstSize, const HUF_CElt* CTable, unsigned maxSymbolValue, unsigned huffLog);