Searched defs:BitsLeft (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/Bitcode/
H A DBitstreamReader.h313 unsigned BitsLeft = NumBits-BitsInCurWord; local
315 // Be careful here, BitsLeft is in the range [1..32] inclusive.
316 R |= (CurWord & (~0U >> (32-BitsLeft))) << BitsInCurWord;
318 // BitsLeft bits have just been used up from CurWord.
319 if (BitsLeft != 32)
320 CurWord >>= BitsLeft; local
323 BitsInCurWord = 32-BitsLeft;

Completed in 60 milliseconds