Searched refs:loBit (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() 622 static APInt getBitsSetWithWrap(unsigned numBits, unsigned loBit, in getBitsSetWithWrap() argument 625 Res.setBitsWithWrap(loBit, hiBit); in getBitsSetWithWrap() 640 static APInt getBitsSetFrom(unsigned numBits, unsigned loBit) { in getBitsSetFrom() argument 642 Res.setBitsFrom(loBit); in getBitsSetFrom() 1453 void setBitsWithWrap(unsigned loBit, unsigned hiBit) { in setBitsWithWrap() argument 1455 assert(loBit <= BitWidth && "loBit out of range"); in setBitsWithWrap() [all …]
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/ |
D | RangeSpecification.java | 710 for (int loBit = numberOfTrailingZeros(mask); 711 loBit != 32; 712 loBit = numberOfTrailingZeros(mask)) { 714 out.append(asChar(loBit)); 715 int hiBit = nextUnsetBit(mask, loBit); 716 int numBits = hiBit - loBit;
|
/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 304 unsigned loWord = whichWord(loBit); in setBitsSlowCase() 308 uint64_t loMask = WORDTYPE_MAX << whichBit(loBit); in setBitsSlowCase() 364 unsigned loBit = whichBit(bitPosition); in insertBits() local 371 U.pVal[loWord] &= ~(mask << loBit); in insertBits() 372 U.pVal[loWord] |= (subBits.U.VAL << loBit); in insertBits() 377 if (loBit == 0) { in insertBits() 413 unsigned loBit = whichBit(bitPosition); in insertBits() local 417 U.pVal[loWord] &= ~(maskBits << loBit); in insertBits() 418 U.pVal[loWord] |= subBits << loBit; in insertBits() [all …]
|
/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 505 assert(loBit < numBits && "loBit out of range"); in getBitsSet() 506 if (hiBit < loBit) in getBitsSet() 508 getHighBitsSet(numBits, numBits - loBit); in getBitsSet() 509 return getLowBitsSet(numBits, hiBit - loBit).shl(loBit); in getBitsSet()
|
/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)
|