Searched refs:maxNbBits (Results 1 - 2 of 2) sorted by relevance

/linux-master/lib/zstd/compress/
H A Dhuf_compress.c287 * Enforces maxNbBits on the Huffman tree described in huffNode.
289 * It sets all nodes with nbBits > maxNbBits to be maxNbBits. Then it adjusts
295 * where largestBits is the return value <= maxNbBits.
297 * @param huffNode The Huffman tree modified in place to enforce maxNbBits.
299 * @param maxNbBits The maximum allowed number of bits, which the Huffman tree
301 * respect maxNbBits.
303 * necessarily no more than maxNbBits.
305 static U32 HUF_setMaxHeight(nodeElt* huffNode, U32 lastNonNull, U32 maxNbBits) argument
308 /* early exit : no elt > maxNbBits, s
653 HUF_buildCTableFromTree(HUF_CElt* CTable, nodeElt const* huffNode, int nonNullRank, U32 maxSymbolValue, U32 maxNbBits) argument
677 HUF_buildCTable_wksp(HUF_CElt* CTable, const unsigned* count, U32 maxSymbolValue, U32 maxNbBits, void* workSpace, size_t wkspSize) argument
[all...]
/linux-master/lib/zstd/common/
H A Dhuf.h186 size_t HUF_buildCTable (HUF_CElt* CTable, const unsigned* count, unsigned maxSymbolValue, unsigned maxNbBits); /* @return : maxNbBits; CTable and count can overlap. In which case, CTable will overwrite count content */
218 const unsigned* count, U32 maxSymbolValue, U32 maxNbBits,

Completed in 94 milliseconds