Lines Matching defs:NumHighBits
1032 const unsigned NumHighBits =
1034 assert(NumHighBits <= integerPartWidth && NumHighBits > 0 &&
1037 ~integerPart(0) << (integerPartWidth - NumHighBits);
1059 const unsigned NumHighBits =
1061 assert(NumHighBits <= integerPartWidth && NumHighBits > 0 &&
1064 << (integerPartWidth - NumHighBits);
1082 const unsigned NumHighBits =
1084 assert(NumHighBits < integerPartWidth && "Can not have more high bits to "
1086 const integerPart HighBitMask = ~integerPart(0) >> NumHighBits;
1103 const unsigned NumHighBits =
1106 << (integerPartWidth - NumHighBits);