Searched refs:hiBits (Results 1 – 1 of 1) sorted by relevance
1372 void setHighBits(unsigned hiBits) { in setHighBits() argument1373 return setBits(BitWidth - hiBits, BitWidth); in setHighBits()1404 void clearHighBits(unsigned hiBits) { in clearHighBits() argument1405 assert(hiBits <= BitWidth && "More bits than bitwidth"); in clearHighBits()1406 APInt Keep = getLowBitsSet(BitWidth, BitWidth - hiBits); in clearHighBits()