Home
last modified time | relevance | path

Searched refs:hiBits (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h1372 void setHighBits(unsigned hiBits) { in setHighBits() argument
1373 return setBits(BitWidth - hiBits, BitWidth); in setHighBits()
1404 void clearHighBits(unsigned hiBits) { in clearHighBits() argument
1405 assert(hiBits <= BitWidth && "More bits than bitwidth"); in clearHighBits()
1406 APInt Keep = getLowBitsSet(BitWidth, BitWidth - hiBits); in clearHighBits()