Searched refs:hiBit (Results 1 – 2 of 2) sorted by relevance
258 static APInt getBitsSet(unsigned numBits, unsigned loBit, unsigned hiBit) { in getBitsSet() argument260 Res.setBits(loBit, hiBit); in getBitsSet()271 unsigned hiBit) { in getBitsSetWithWrap() argument273 Res.setBitsWithWrap(loBit, hiBit); in getBitsSetWithWrap()1354 void setBitsWithWrap(unsigned loBit, unsigned hiBit) { in setBitsWithWrap() argument1355 assert(hiBit <= BitWidth && "hiBit out of range"); in setBitsWithWrap()1357 if (loBit < hiBit) { in setBitsWithWrap()1358 setBits(loBit, hiBit); in setBitsWithWrap()1361 setLowBits(hiBit); in setBitsWithWrap()1367 void setBits(unsigned loBit, unsigned hiBit) { in setBits() argument[all …]
312 void APInt::setBitsSlowCase(unsigned loBit, unsigned hiBit) { in setBitsSlowCase() argument314 unsigned hiWord = whichWord(hiBit); in setBitsSlowCase()320 unsigned hiShiftAmt = whichBit(hiBit); in setBitsSlowCase()