BIT_highbit32     252 lib/zstd/bitstream.h 			bitD->bitsConsumed = lastByte ? 8 - BIT_highbit32(lastByte) : 0; /* ensures bitsConsumed is always set */
BIT_highbit32     276 lib/zstd/bitstream.h 			bitD->bitsConsumed = lastByte ? 8 - BIT_highbit32(lastByte) : 0;
BIT_highbit32     219 lib/zstd/entropy_common.c 		U32 const tableLog = BIT_highbit32(weightTotal) + 1;
BIT_highbit32     227 lib/zstd/entropy_common.c 			U32 const verif = 1 << BIT_highbit32(rest);
BIT_highbit32     228 lib/zstd/entropy_common.c 			U32 const lastWeight = BIT_highbit32(rest) + 1;
BIT_highbit32     181 lib/zstd/fse_compress.c 				U32 const maxBitsOut = tableLog - BIT_highbit32(normalizedCounter[s] - 1);
BIT_highbit32     487 lib/zstd/fse_compress.c 	U32 minBitsSrc = BIT_highbit32((U32)(srcSize - 1)) + 1;
BIT_highbit32     488 lib/zstd/fse_compress.c 	U32 minBitsSymbols = BIT_highbit32(maxSymbolValue) + 2;
BIT_highbit32     495 lib/zstd/fse_compress.c 	U32 maxBitsSrc = BIT_highbit32((U32)(srcSize - 1)) - minus;
BIT_highbit32     159 lib/zstd/fse_decompress.c 			tableDecode[u].nbBits = (BYTE)(tableLog - BIT_highbit32((U32)nextState));
BIT_highbit32     332 lib/zstd/huf_compress.c 				U32 nBitsToDecrease = BIT_highbit32(totalCost) + 1;
BIT_highbit32     396 lib/zstd/huf_compress.c 		U32 r = BIT_highbit32(count[n] + 1);
BIT_highbit32     405 lib/zstd/huf_compress.c 		U32 const r = BIT_highbit32(c + 1) + 1;