Searched refs:hiBits (Results 1 – 1 of 1) sorted by relevance
1391 void setHighBits(unsigned hiBits) { in setHighBits() argument1392 return setBits(BitWidth - hiBits, BitWidth); in setHighBits()1442 void clearHighBits(unsigned hiBits) { in clearHighBits() argument1443 assert(hiBits <= BitWidth && "More bits than bitwidth"); in clearHighBits()1444 APInt Keep = getLowBitsSet(BitWidth, BitWidth - hiBits); in clearHighBits()