Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h258 static APInt getBitsSet(unsigned numBits, unsigned loBit, unsigned hiBit) { in getBitsSet() argument
260 Res.setBits(loBit, hiBit); in getBitsSet()
271 unsigned hiBit) { in getBitsSetWithWrap() argument
273 Res.setBitsWithWrap(loBit, hiBit); in getBitsSetWithWrap()
1354 void setBitsWithWrap(unsigned loBit, unsigned hiBit) { in setBitsWithWrap() argument
1355 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 …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp312 void APInt::setBitsSlowCase(unsigned loBit, unsigned hiBit) { in setBitsSlowCase() argument
314 unsigned hiWord = whichWord(hiBit); in setBitsSlowCase()
320 unsigned hiShiftAmt = whichBit(hiBit); in setBitsSlowCase()