Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
HDAPInt.h1490 void setLowBits(unsigned loBits) { in setLowBits() argument
1491 return setBits(0, loBits); in setLowBits()
1520 void clearLowBits(unsigned loBits) { in clearLowBits() argument
1521 assert(loBits <= BitWidth && "More bits than bitwidth"); in clearLowBits()
1522 APInt Keep = getHighBitsSet(BitWidth, BitWidth - loBits); in clearLowBits()