Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DAPInt.h242 void setBitsSlowCase(unsigned loBit, unsigned hiBit);
615 Res.setBits(loBit, hiBit);
626 unsigned hiBit) {
628 Res.setBitsWithWrap(loBit, hiBit);
1469 assert(hiBit <= BitWidth && "hiBit out of range");
1471 if (loBit < hiBit) {
1472 setBits(loBit, hiBit);
1475 setLowBits(hiBit);
1481 void setBits(unsigned loBit, unsigned hiBit) {
1485 if (loBit == hiBit)
[all …]
/netbsd/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DCodeEmitterGen.cpp221 unsigned hiBit = loBit + N; in AddCodeToMergeInOperand() local
226 extractStr = "op.extractBits(" + itostr(hiBit - loBit) + ", " + in AddCodeToMergeInOperand()
231 extractStr = "op.extractBitsAsZExtValue(" + itostr(hiBit - loBit) + in AddCodeToMergeInOperand()
234 itostr(loInstBit) + ", " + itostr(hiBit - loBit) + ");\n"; in AddCodeToMergeInOperand()
/netbsd/external/apache2/llvm/dist/llvm/lib/Support/
H A DAPInt.cpp303 void APInt::setBitsSlowCase(unsigned loBit, unsigned hiBit) { in setBitsSlowCase() argument
305 unsigned hiWord = whichWord(hiBit); in setBitsSlowCase()
311 unsigned hiShiftAmt = whichBit(hiBit); in setBitsSlowCase()