Searched refs:loBits (Results 1 – 2 of 2) sorted by relevance
45 int loBits = (int) (millis & 0xFFFFFFFFL);46 return hiBits + " " + loBits;
1490 void setLowBits(unsigned loBits) { in setLowBits() argument1491 return setBits(0, loBits); in setLowBits()1520 void clearLowBits(unsigned loBits) { in clearLowBits() argument1521 assert(loBits <= BitWidth && "More bits than bitwidth"); in clearLowBits()1522 APInt Keep = getHighBitsSet(BitWidth, BitWidth - loBits); in clearLowBits()