Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTReader.h2426 CurrentBitsIndex = 0; in updateValue()
2429 void advance(uint32_t BitsWidth) { CurrentBitsIndex += BitsWidth; } in advance()
2433 return Value & (1 << CurrentBitsIndex++); in getNextBit()
2439 uint32_t Ret = (Value >> CurrentBitsIndex) & ((1 << Width) - 1); in getNextBits()
2440 CurrentBitsIndex += Width; in getNextBits()
2445 return CurrentBitsIndex + Width < BitsIndexUpbound; in canGetNextNBits()
2449 bool isValid() const { return CurrentBitsIndex < BitsIndexUpbound; } in isValid()
2452 uint32_t CurrentBitsIndex = ~0; variable