Searched refs:UIntBits (Results 1 – 1 of 1) sorted by relevance
49 constexpr static unsigned UIntBits = CHAR_BIT * sizeof(UIntTy); variable52 return (Raw << 1) | (Raw >> (UIntBits - 1)); in encodeRaw()55 return (Raw >> 1) | (Raw << (UIntBits - 1)); in decodeRaw()99 constexpr static auto UIntBits = SourceLocationEncoding::UIntBits; variable108 UIntTy Sign = (V & (1 << (UIntBits - 1))) ? UIntTy(-1) : UIntTy(0); in zigZag()