Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/Serialization/
H A DSourceLocationEncoding.h44 constexpr static unsigned UIntBits = CHAR_BIT * sizeof(UIntTy); variable
47 return (Raw << 1) | (Raw >> (UIntBits - 1)); in encodeRaw()
50 return (Raw >> 1) | (Raw << (UIntBits - 1)); in decodeRaw()
90 constexpr static auto UIntBits = SourceLocationEncoding::UIntBits; variable
99 UIntTy Sign = (V & (1 << (UIntBits - 1))) ? UIntTy(-1) : UIntTy(0); in zigZag()