Lines Matching refs:nbBits
65 int nbBits; in FSE_readNCount_body() local
89 nbBits = (bitStream & 0xF) + FSE_MIN_TABLELOG; /* extract tableLog */ in FSE_readNCount_body()
90 if (nbBits > FSE_TABLELOG_ABSOLUTE_MAX) return ERROR(tableLog_tooLarge); in FSE_readNCount_body()
93 *tableLogPtr = nbBits; in FSE_readNCount_body()
94 remaining = (1<<nbBits)+1; in FSE_readNCount_body()
95 threshold = 1<<nbBits; in FSE_readNCount_body()
96 nbBits++; in FSE_readNCount_body()
154 bitCount += nbBits-1; in FSE_readNCount_body()
158 bitCount += nbBits; in FSE_readNCount_body()
181 nbBits = BIT_highbit32(remaining) + 1; in FSE_readNCount_body()
182 threshold = 1 << (nbBits - 1); in FSE_readNCount_body()