Home
last modified time | relevance | path

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

/external/zstd/lib/compress/
Dhuf_compress.c261 U32 rankLast[HUF_TABLELOG_MAX+2]; in HUF_setMaxHeight() local
264 ZSTD_memset(rankLast, 0xF0, sizeof(rankLast)); in HUF_setMaxHeight()
270 rankLast[maxNbBits-currentNbBits] = (U32)pos; in HUF_setMaxHeight()
279 U32 const highPos = rankLast[nBitsToDecrease]; in HUF_setMaxHeight()
280 U32 const lowPos = rankLast[nBitsToDecrease-1]; in HUF_setMaxHeight()
291 assert(rankLast[nBitsToDecrease] != noSymbol || nBitsToDecrease == 1); in HUF_setMaxHeight()
293 … while ((nBitsToDecrease<=HUF_TABLELOG_MAX) && (rankLast[nBitsToDecrease] == noSymbol)) in HUF_setMaxHeight()
295 assert(rankLast[nBitsToDecrease] != noSymbol); in HUF_setMaxHeight()
298 huffNode[rankLast[nBitsToDecrease]].nbBits++; in HUF_setMaxHeight()
304 if (rankLast[nBitsToDecrease-1] == noSymbol) in HUF_setMaxHeight()
[all …]