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/ |
D | APInt.h | 241 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/ |
D | RangeSpecification.java | 715 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/ |
D | APInt.h | 503 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/ |
D | APInt.cpp | 303 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/ |
D | PPCGenDisassemblerTables.inc | 25 // * Support getBitsSet(loBit, hiBit)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/Mips/ |
D | MipsGenDisassemblerTables.inc | 25 // * Support getBitsSet(loBit, hiBit)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/ARM/ |
D | ARMGenDisassemblerTables.inc | 25 // * Support getBitsSet(loBit, hiBit)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/AArch64/ |
D | AArch64GenDisassemblerTables.inc | 25 // * Support getBitsSet(loBit, hiBit)
|