Lines Matching refs:nbBits
76 int nbBits; in FSE_readNCount_body() local
100 nbBits = (bitStream & 0xF) + FSE_MIN_TABLELOG; /* extract tableLog */ in FSE_readNCount_body()
101 if (nbBits > FSE_TABLELOG_ABSOLUTE_MAX) return ERROR(tableLog_tooLarge); in FSE_readNCount_body()
104 *tableLogPtr = nbBits; in FSE_readNCount_body()
105 remaining = (1<<nbBits)+1; in FSE_readNCount_body()
106 threshold = 1<<nbBits; in FSE_readNCount_body()
107 nbBits++; in FSE_readNCount_body()
165 bitCount += nbBits-1; in FSE_readNCount_body()
169 bitCount += nbBits; in FSE_readNCount_body()
192 nbBits = BIT_highbit32(remaining) + 1; in FSE_readNCount_body()
193 threshold = 1 << (nbBits - 1); in FSE_readNCount_body()