Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dhuf_compress.c236 { U32 const noSymbol = 0xF0F0F0F0; in HUF_setMaxHeight() local
254 if (highPos == noSymbol) continue; in HUF_setMaxHeight()
255 if (lowPos == noSymbol) break; in HUF_setMaxHeight()
262 … while ((nBitsToDecrease<=HUF_TABLELOG_MAX) && (rankLast[nBitsToDecrease] == noSymbol)) in HUF_setMaxHeight()
265 if (rankLast[nBitsToDecrease-1] == noSymbol) in HUF_setMaxHeight()
269 rankLast[nBitsToDecrease] = noSymbol; in HUF_setMaxHeight()
273 rankLast[nBitsToDecrease] = noSymbol; /* this rank is now empty */ in HUF_setMaxHeight()
277 …if (rankLast[1] == noSymbol) { /* special case : no rank 1 symbol (using maxNbBits-1); let's crea… in HUF_setMaxHeight()
/freebsd/sys/contrib/zstd/lib/compress/
H A Dhuf_compress.c340 { U32 const noSymbol = 0xF0F0F0F0; in HUF_setMaxHeight() local
361 if (highPos == noSymbol) continue; in HUF_setMaxHeight()
365 if (lowPos == noSymbol) break; in HUF_setMaxHeight()
371 assert(rankLast[nBitsToDecrease] != noSymbol || nBitsToDecrease == 1); in HUF_setMaxHeight()
373 … while ((nBitsToDecrease<=HUF_TABLELOG_MAX) && (rankLast[nBitsToDecrease] == noSymbol)) in HUF_setMaxHeight()
375 assert(rankLast[nBitsToDecrease] != noSymbol); in HUF_setMaxHeight()
384 if (rankLast[nBitsToDecrease-1] == noSymbol) in HUF_setMaxHeight()
394 rankLast[nBitsToDecrease] = noSymbol; in HUF_setMaxHeight()
398 rankLast[nBitsToDecrease] = noSymbol; /* this rank is now empty */ in HUF_setMaxHeight()
412 if (rankLast[1] == noSymbol) { in HUF_setMaxHeight()