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

/linux-master/lib/zstd/compress/
H A Dhuf_compress.c338 U32 rankLast[HUF_TABLELOG_MAX+2]; local
341 ZSTD_memset(rankLast, 0xF0, sizeof(rankLast));
347 rankLast[maxNbBits-currentNbBits] = (U32)pos;
356 U32 const highPos = rankLast[nBitsToDecrease];
357 U32 const lowPos = rankLast[nBitsToDecrease-1];
368 assert(rankLast[nBitsToDecrease] != noSymbol || nBitsToDecrease == 1);
370 while ((nBitsToDecrease<=HUF_TABLELOG_MAX) && (rankLast[nBitsToDecrease] == noSymbol))
372 assert(rankLast[nBitsToDecrease] != noSymbol);
375 huffNode[rankLast[nBitsToDecreas
[all...]

Completed in 120 milliseconds