Home
last modified time | relevance | path

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

/src/contrib/llvm-project/clang/include/clang/Serialization/
H A DSourceLocationEncoding.h49 constexpr static unsigned UIntBits = CHAR_BIT * sizeof(UIntTy); variable
52 return (Raw << 1) | (Raw >> (UIntBits - 1)); in encodeRaw()
55 return (Raw >> 1) | (Raw << (UIntBits - 1)); in decodeRaw()
99 constexpr static auto UIntBits = SourceLocationEncoding::UIntBits; variable
108 UIntTy Sign = (V & (1 << (UIntBits - 1))) ? UIntTy(-1) : UIntTy(0); in zigZag()