Searched refs:UIntBits (Results 1 – 1 of 1) sorted by relevance
44 constexpr static unsigned UIntBits = CHAR_BIT * sizeof(UIntTy); variable47 return (Raw << 1) | (Raw >> (UIntBits - 1)); in encodeRaw()50 return (Raw >> 1) | (Raw << (UIntBits - 1)); in decodeRaw()90 constexpr static auto UIntBits = SourceLocationEncoding::UIntBits; variable99 UIntTy Sign = (V & (1 << (UIntBits - 1))) ? UIntTy(-1) : UIntTy(0); in zigZag()