Home
last modified time | relevance | path

Searched refs:CurrentBitsIndex (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTReader.h2459 CurrentBitsIndex = 0; in updateValue()
2462 void advance(uint32_t BitsWidth) { CurrentBitsIndex += BitsWidth; } in advance()
2466 return Value & (1 << CurrentBitsIndex++); in getNextBit()
2472 uint32_t Ret = (Value >> CurrentBitsIndex) & ((1 << Width) - 1); in getNextBits()
2473 CurrentBitsIndex += Width; in getNextBits()
2478 return CurrentBitsIndex + Width < BitsIndexUpbound; in canGetNextNBits()
2482 bool isValid() const { return CurrentBitsIndex < BitsIndexUpbound; } in isValid()
2485 uint32_t CurrentBitsIndex = ~0; variable