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.h1391 void setHighBits(unsigned hiBits) { in setHighBits() argument
1392 return setBits(BitWidth - hiBits, BitWidth); in setHighBits()
1442 void clearHighBits(unsigned hiBits) { in clearHighBits() argument
1443 assert(hiBits <= BitWidth && "More bits than bitwidth"); in clearHighBits()
1444 APInt Keep = getLowBitsSet(BitWidth, BitWidth - hiBits); in clearHighBits()