Lines Matching refs:nbBits
49 int nbBits; in FSE_readNCount_body() local
73 nbBits = (bitStream & 0xF) + FSE_MIN_TABLELOG; /* extract tableLog */ in FSE_readNCount_body()
74 if (nbBits > FSE_TABLELOG_ABSOLUTE_MAX) return ERROR(tableLog_tooLarge); in FSE_readNCount_body()
77 *tableLogPtr = nbBits; in FSE_readNCount_body()
78 remaining = (1<<nbBits)+1; in FSE_readNCount_body()
79 threshold = 1<<nbBits; in FSE_readNCount_body()
80 nbBits++; in FSE_readNCount_body()
138 bitCount += nbBits-1; in FSE_readNCount_body()
142 bitCount += nbBits; in FSE_readNCount_body()
165 nbBits = ZSTD_highbit32(remaining) + 1; in FSE_readNCount_body()
166 threshold = 1 << (nbBits - 1); in FSE_readNCount_body()