Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPInt.h241 void setBitsSlowCase(unsigned loBit, unsigned hiBit);
611 static APInt getBitsSet(unsigned numBits, unsigned loBit, unsigned hiBit) { in getBitsSet() argument
612 assert(loBit <= hiBit && "loBit greater than hiBit"); in getBitsSet()
614 Res.setBits(loBit, hiBit); in getBitsSet()
623 unsigned hiBit) { in getBitsSetWithWrap() argument
625 Res.setBitsWithWrap(loBit, hiBit); in getBitsSetWithWrap()
1453 void setBitsWithWrap(unsigned loBit, unsigned hiBit) { in setBitsWithWrap() argument
1454 assert(hiBit <= BitWidth && "hiBit out of range"); in setBitsWithWrap()
1456 if (loBit <= hiBit) { in setBitsWithWrap()
1457 setBits(loBit, hiBit); in setBitsWithWrap()
[all …]
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/
DRangeSpecification.java715 int hiBit = nextUnsetBit(mask, loBit);
716 int numBits = hiBit - loBit;
722 out.append(asChar(hiBit - 1));
725 mask &= ~((1 << hiBit) - 1);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPInt.h503 static APInt getBitsSet(unsigned numBits, unsigned loBit, unsigned hiBit) { in getBitsSet() argument
504 assert(hiBit <= numBits && "hiBit out of range"); in getBitsSet()
506 if (hiBit < loBit) in getBitsSet()
507 return getLowBitsSet(numBits, hiBit) | in getBitsSet()
509 return getLowBitsSet(numBits, hiBit - loBit).shl(loBit); in getBitsSet()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/PowerPC/
DPPCGenDisassemblerTables.inc25 // * Support getBitsSet(loBit, hiBit)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/Mips/
DMipsGenDisassemblerTables.inc25 // * Support getBitsSet(loBit, hiBit)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/ARM/
DARMGenDisassemblerTables.inc25 // * Support getBitsSet(loBit, hiBit)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/AArch64/
DAArch64GenDisassemblerTables.inc25 // * Support getBitsSet(loBit, hiBit)