Lines Matching refs:nbBits
66 int nbBits; in FSE_readNCount_body() local
90 nbBits = (bitStream & 0xF) + FSE_MIN_TABLELOG; /* extract tableLog */ in FSE_readNCount_body()
91 if (nbBits > FSE_TABLELOG_ABSOLUTE_MAX) return ERROR(tableLog_tooLarge); in FSE_readNCount_body()
94 *tableLogPtr = nbBits; in FSE_readNCount_body()
95 remaining = (1<<nbBits)+1; in FSE_readNCount_body()
96 threshold = 1<<nbBits; in FSE_readNCount_body()
97 nbBits++; in FSE_readNCount_body()
155 bitCount += nbBits-1; in FSE_readNCount_body()
159 bitCount += nbBits; in FSE_readNCount_body()
182 nbBits = BIT_highbit32(remaining) + 1; in FSE_readNCount_body()
183 threshold = 1 << (nbBits - 1); in FSE_readNCount_body()