Home
last modified time | relevance | path

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

/linux/lib/zstd/compress/
H A Dhuf_compress.c409 U32 rankLast[HUF_TABLELOG_MAX+2]; in HUF_setMaxHeight() local
412 ZSTD_memset(rankLast, 0xF0, sizeof(rankLast)); in HUF_setMaxHeight()
418 rankLast[targetNbBits-currentNbBits] = (U32)pos; in HUF_setMaxHeight()
427 U32 const highPos = rankLast[nBitsToDecrease]; in HUF_setMaxHeight()
428 U32 const lowPos = rankLast[nBitsToDecrease-1]; in HUF_setMaxHeight()
439 assert(rankLast[nBitsToDecrease] != noSymbol || nBitsToDecrease == 1); in HUF_setMaxHeight()
441 … while ((nBitsToDecrease<=HUF_TABLELOG_MAX) && (rankLast[nBitsToDecrease] == noSymbol)) in HUF_setMaxHeight()
443 assert(rankLast[nBitsToDecrease] != noSymbol); in HUF_setMaxHeight()
446 huffNode[rankLast[nBitsToDecrease]].nbBits++; in HUF_setMaxHeight()
452 if (rankLast[nBitsToDecrease-1] == noSymbol) in HUF_setMaxHeight()
[all …]